Index: typo3/class.db_list_extra.inc =================================================================== --- typo3/class.db_list_extra.inc (revision 6168) +++ typo3/class.db_list_extra.inc (working copy) @@ -566,18 +566,30 @@ $this->eCounter++; } - // Record navigation is added to the beginning and end of the table if in single table mode + // Record navigation is added to the beginning and end of the table if in single table mode if ($this->table) { $pageNavigation = $this->renderListNavigation(); $iOut = $pageNavigation . $iOut . $pageNavigation; + } else { + // show that there are more records than shown + if ($this->totalItems > $this->itemsLimitPerTable) {debug($this->itemsLimitSingleTable); + $countOnFirstPage = $this->totalItems > $this->itemsLimitSingleTable ? $this->itemsLimitSingleTable : $this->totalItems; + $hasMore = ($this->totalItems > $this->itemsLimitSingleTable); + $iOut .= ' + ' . + 'backPath,'gfx/pildown.gif', 'width="14" height="14"') .' alt="" />'. + ' [1 - ' . $countOnFirstPage . ($hasMore ? '+' : '') . '] + '; + } + } // The header row for the table is now created: - $out.=$this->renderListHeader($table,$currentIdList); + $out .= $this->renderListHeader($table,$currentIdList); } // The list of records is added after the header: - $out.=$iOut; + $out .= $iOut; unset($iOut); // ... and it is all wrapped in a table: