projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b659fe
)
nits
author
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 5 Aug 2009 07:45:55 +0000
(
01:45
-0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 5 Aug 2009 07:45:55 +0000
(
01:45
-0600)
imp/lib/Imap/Tree.php
patch
|
blob
|
history
diff --git
a/imp/lib/Imap/Tree.php
b/imp/lib/Imap/Tree.php
index
147dcdd
..
8684963
100644
(file)
--- a/
imp/lib/Imap/Tree.php
+++ b/
imp/lib/Imap/Tree.php
@@
-1995,7
+1995,10
@@
class IMP_Imap_Tree
*/
public function createMailboxName($parent, $new)
{
- $ns_info = (empty($parent)) ? $GLOBALS['imp_imap']->defaultNamespace() : $this->_getNamespace($parent);
+ $ns_info = empty($parent)
+ ? $GLOBALS['imp_imap']->defaultNamespace()
+ : $this->_getNamespace($parent);
+
if (is_null($ns_info)) {
if ($this->isNamespace($this->_tree[$parent])) {
$ns_info = $this->_getNamespace($new);
@@
-2013,4
+2016,5
@@
class IMP_Imap_Tree
}
return $mbox . $new;
}
+
}