feed browser: extend max view limit to 200

This commit is contained in:
Andrew Dolgov 2009-01-16 10:54:07 +01:00
parent 6f483f5f57
commit 42fd0acfdc

View file

@ -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>";
}