Project

General

Profile

Bug #20095 ยป 10550.diff

Administrator Admin, 2009-02-26 10:39

View differences:

typo3/class.db_list.inc (working copy)
var $currentTable = array(); // Used for tracking next/prev uids
var $duplicateStack=array(); // Used for tracking duplicate values of fields
var $modTSconfig; // module configuratio
/**
* Initializes the list generation
*
......
$this->counter=0;
$this->JScode='';
$this->HTMLcode='';
// limits
if(isset($this->modTSconfig['properties']['itemsLimitPerTable'])) {
$this->itemsLimitPerTable = t3lib_div::intInRange(intval($this->modTSconfig['properties']['itemsLimitPerTable']), 1, 10000);
}
if(isset($this->modTSconfig['properties']['itemsLimitSingleTable'])) {
$this->itemsLimitSingleTable = t3lib_div::intInRange(intval($this->modTSconfig['properties']['itemsLimitSingleTable']), 1, 10000);
}
// Set select levels:
$sL=intval($this->searchLevels);
$this->perms_clause = $GLOBALS['BE_USER']->getPagePermsClause(1);
typo3/db_list.php (working copy)
$dblist->pageRow = $this->pageinfo;
$dblist->counter++;
$dblist->MOD_MENU = array('bigControlPanel' => '', 'clipBoard' => '', 'localization' => '');
$dblist->modTSconfig = $this->modTSconfig;
// Clipboard is initialized:
$dblist->clipObj = t3lib_div::makeInstance('t3lib_clipboard'); // Start clipboard
    (1-1/1)