Fix variable name.
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 1 Oct 2010 17:09:59 +0000 (11:09 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 1 Oct 2010 19:42:07 +0000 (13:42 -0600)
imp/lib/Mailbox/List.php

index 13b8a9d..0eff314 100644 (file)
@@ -695,8 +695,8 @@ class IMP_Mailbox_List implements Countable, Serializable
 
         if (!is_null($this->_sorted)) {
             $data['so'] = $this->_sorted;
-            if (!empty($this->_sortedmbox)) {
-                $data['som'] = $this->_sortedmbox;
+            if (!empty($this->_sortedMbox)) {
+                $data['som'] = $this->_sortedMbox;
             }
         }
 
@@ -729,7 +729,7 @@ class IMP_Mailbox_List implements Countable, Serializable
         if (isset($data['so'])) {
             $this->_sorted = $data['so'];
             if (isset($data['som'])) {
-                $this->_sortedmbox = $data['som'];
+                $this->_sortedMbox = $data['som'];
             }
         }