projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e84be4
)
Missed some session->class variable conversions
author
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 10 Sep 2010 21:51:41 +0000
(15:51 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 10 Sep 2010 22:51:44 +0000
(16:51 -0600)
imp/lib/Search.php
patch
|
blob
|
history
diff --git
a/imp/lib/Search.php
b/imp/lib/Search.php
index
b759b24
..
ce4b2ee
100644
(file)
--- 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();
}