aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-11 20:44:54 -0700
committerfriendica <info@friendica.com>2013-10-11 20:44:54 -0700
commit0bfcc31bf9f647152c6b64e1025aa481f4b4cbc0 (patch)
tree297b7be84af49503284ee393d7a6431c60e82a68 /include/text.php
parent7cd1bd59b2544aae52a399761849f46bd7b8a066 (diff)
parent899ebe9cbc99b143a485e10e8c246bd6411eefc3 (diff)
downloadvolse-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-xinclude/text.php2
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,