allow to list more entries (RFE 3164362)

This commit is contained in:
Roland Gruber 2011-01-24 20:50:04 +00:00
parent 4f3da7697e
commit bfc9becfee
1 changed files with 1 additions and 1 deletions

View File

@ -865,7 +865,7 @@ class lamList {
* @return array list of lamListOption objects
*/
protected function listGetAllConfigOptions() {
$listSizeOption = new lamSelectListOption(_("Maximum list entries"), array(10, 20, 30, 50, 75, 100), self::LIST_SIZE_OPTION_NAME);
$listSizeOption = new lamSelectListOption(_("Maximum list entries"), array(10, 20, 30, 50, 75, 100, 500, 1000), self::LIST_SIZE_OPTION_NAME);
$listSizeOption->setHelpID('208');
$listSizeOption->setValue($this->maxPageEntries);
return array($listSizeOption);