1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-31 09:11:29 +00:00

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