summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/class/browse.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php
index cb8acbb7..fed25419 100644
--- a/lib/class/browse.class.php
+++ b/lib/class/browse.class.php
@@ -510,7 +510,7 @@ class Browse {
// Limit is based on the users preferences
$limit = $GLOBALS['user']->prefs['offset_limit'] ? $GLOBALS['user']->prefs['offset_limit'] : '25';
- if (count($object_ids) > $start) {
+ if (count($object_ids) > self::$start) {
$object_ids = array_slice($object_ids,self::$start,$limit);
}