diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 15:16:02 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 15:16:02 +0000 |
commit | 2a0c72b30cccb9658986c619c7ff184b375d3d56 (patch) | |
tree | 604e0dfc5135a1eb60fcfac2fdc2498b80597fa2 /lib/class/browse.class.php | |
parent | e24192c441069d1117b5478950f4ffd21b8800c9 (diff) | |
download | ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.tar.gz ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.tar.bz2 ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.zip |
some more minor tweaks to democratic playlist, fixed now playing on localplay playlist
Diffstat (limited to 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index 289f1a5d..9cd6bbc7 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -1070,7 +1070,7 @@ class Browse { // Limit is based on the users preferences if this is not a simple browse because we've got too much here if (count($object_ids) > self::$start AND !self::is_simple_browse()) { - $object_ids = array_slice($object_ids,self::$start,self::$offset); + $object_ids = array_slice($object_ids,self::$start,self::$offset,TRUE); } // Format any matches we have so we can show them to the masses |