feed browser: extend max view limit to 200

master
Andrew Dolgov 16 years ago
parent 6f483f5f57
commit 42fd0acfdc

@ -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…
Cancel
Save