diff options
author | friendica <info@friendica.com> | 2013-10-11 20:44:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-11 20:44:54 -0700 |
commit | 0bfcc31bf9f647152c6b64e1025aa481f4b4cbc0 (patch) | |
tree | 297b7be84af49503284ee393d7a6431c60e82a68 /include/text.php | |
parent | 7cd1bd59b2544aae52a399761849f46bd7b8a066 (diff) | |
parent | 899ebe9cbc99b143a485e10e8c246bd6411eefc3 (diff) | |
download | volse-hubzilla-0bfcc31bf9f647152c6b64e1025aa481f4b4cbc0.tar.gz volse-hubzilla-0bfcc31bf9f647152c6b64e1025aa481f4b4cbc0.tar.bz2 volse-hubzilla-0bfcc31bf9f647152c6b64e1025aa481f4b4cbc0.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 8f700458c..a3f2a651c 100755 --- a/include/text.php +++ b/include/text.php @@ -364,7 +364,7 @@ function alt_pager(&$a, $i, $more = '', $less = '') { return replace_macros(get_markup_template('alt_pager.tpl'),array( '$has_less' => (($a->pager['page'] > 1) ? true : false), - '$has_more' => (($i > 0 && $i == $a->pager['itemspage']) ? true : false), + '$has_more' => (($i > 0 && $i >= $a->pager['itemspage']) ? true : false), '$less' => $less, '$more' => $more, '$url' => $url, |