diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-05 03:59:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-05 03:59:06 +0000 |
commit | 6276503dad74ac1cfc424ee6adebf3a720836141 (patch) | |
tree | 175eabb5ddee29a5fe7df176f67b665a8684378c /lib/class/browse.class.php | |
parent | 0dbace41fe33a9bc2460a58be1022f11b35f4b8c (diff) | |
download | ampache-6276503dad74ac1cfc424ee6adebf3a720836141.tar.gz ampache-6276503dad74ac1cfc424ee6adebf3a720836141.tar.bz2 ampache-6276503dad74ac1cfc424ee6adebf3a720836141.zip |
unbreak browsing and kind of torture tagging a little
Diffstat (limited to 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index cc72e4ca..5ad791f3 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -344,7 +344,7 @@ class Browse { */ public static function get_saved() { - $objects = $_SESSION['browse']['save']; + $objects = $_SESSION['browse']['save'][self::$type]; return $objects; @@ -894,7 +894,7 @@ class Browse { public static function save_objects($object_ids) { // save these objects - $_SESSION['browse']['save'] = $object_ids; + $_SESSION['browse']['save'][self::$type] = $object_ids; self::$total_objects = count($object_ids); return true; |