summaryrefslogtreecommitdiffstats
path: root/lib/class/browse.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-05 03:59:06 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-05 03:59:06 +0000
commit6276503dad74ac1cfc424ee6adebf3a720836141 (patch)
tree175eabb5ddee29a5fe7df176f67b665a8684378c /lib/class/browse.class.php
parent0dbace41fe33a9bc2460a58be1022f11b35f4b8c (diff)
downloadampache-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.php4
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;