nits
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 5 Aug 2009 07:45:55 +0000 (01:45 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 5 Aug 2009 07:45:55 +0000 (01:45 -0600)
imp/lib/Imap/Tree.php

index 147dcdd..8684963 100644 (file)
@@ -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;
     }
+
 }