From bfc9becfee3819cdfa96510b0f7bf7499927395e Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 24 Jan 2011 20:50:04 +0000 Subject: [PATCH] allow to list more entries (RFE 3164362) --- lam/lib/lists.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index eb684977..dac83dd4 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -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);