feed browser: extend max view limit to 200
This commit is contained in:
parent
6f483f5f57
commit
42fd0acfdc
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@
|
|||
print "<div style=\"float : right\">
|
||||
".__('Top')." <select id=\"feedBrowserLimit\">";
|
||||
|
||||
foreach (array(25, 50, 100) as $l) {
|
||||
foreach (array(25, 50, 100, 200) as $l) {
|
||||
$issel = ($l == $limit) ? "selected" : "";
|
||||
print "<option $issel>$l</option>";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue