From bde869585d03b26a41016f1edb934dc3d590f8bf Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 1 Oct 2010 11:09:59 -0600 Subject: [PATCH] Fix variable name. --- imp/lib/Mailbox/List.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imp/lib/Mailbox/List.php b/imp/lib/Mailbox/List.php index 13b8a9db6..0eff31434 100644 --- a/imp/lib/Mailbox/List.php +++ b/imp/lib/Mailbox/List.php @@ -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']; } } -- 2.11.0