Fix undefined error
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Dec 2008 06:15:38 +0000 (23:15 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Dec 2008 06:15:38 +0000 (23:15 -0700)
imp/lib/UI/Mailbox.php

index 15f5893..7df4052 100644 (file)
@@ -117,7 +117,7 @@ class IMP_UI_Mailbox
             }
         }
 
-        if ($full && !isset($ret['fullfrom'])) {
+        if (!empty($options['fullfrom']) && !isset($ret['fullfrom'])) {
             $ret['fullfrom'] = $ret['from'];
         }