allow to list more entries (RFE 3164362)
This commit is contained in:
parent
4f3da7697e
commit
bfc9becfee
|
@ -865,7 +865,7 @@ class lamList {
|
||||||
* @return array list of lamListOption objects
|
* @return array list of lamListOption objects
|
||||||
*/
|
*/
|
||||||
protected function listGetAllConfigOptions() {
|
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->setHelpID('208');
|
||||||
$listSizeOption->setValue($this->maxPageEntries);
|
$listSizeOption->setValue($this->maxPageEntries);
|
||||||
return array($listSizeOption);
|
return array($listSizeOption);
|
||||||
|
|
Loading…
Reference in New Issue