fix DEFAULT_ARTICLE_LIMIT handling

This commit is contained in:
Andrew Dolgov 2005-12-21 19:45:18 +01:00
parent 9f5b331f59
commit 59b7764387
1 changed files with 6 additions and 5 deletions

View File

@ -169,16 +169,17 @@
$def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
print $def_art_limit;
if ($def_art_limit >= 0) {
if ($def_art_limit >= 0 && !array_key_exists($def_art_limit, $limits)) {
$limits[$def_art_limit] = $def_art_limit;
}
asort($limits);
asort($limits);
array_push($limits, 0);
if (!$def_art_limit) {
$def_art_limit = 30;
}
foreach ($limits as $key) {
print "<option";
if ($key == $def_art_limit) { print " selected"; }