From 841c8b5f271901c58e4b82ddb97f68ed484bc57b Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 10 Sep 2010 15:51:41 -0600 Subject: [PATCH] Missed some session->class variable conversions --- imp/lib/Search.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imp/lib/Search.php b/imp/lib/Search.php index b759b249e..ce4b2eef2 100644 --- a/imp/lib/Search.php +++ b/imp/lib/Search.php @@ -516,7 +516,7 @@ class IMP_Search implements Serializable if ($this->_saveVFolder) { $vfolders = $this->_getVFolderList(); - $vfolders[$id] = $_SESSION['imp']['search'][$id]; + $vfolders[$id] = $this->_search[$id]; $this->_saveVFolderList($vfolders); } @@ -686,8 +686,8 @@ class IMP_Search implements Serializable public function getSearchFolders($id) { $id = $this->_strip($id); - return isset($_SESSION['imp']['search'][$id]['f']) - ? $_SESSION['imp']['search'][$id]['f'] + return isset($this->_search[$id]['f']) + ? $this->_search[$id]['f'] : array(); } -- 2.11.0