From b8410190a38273de2a733303c748d50e5290675e Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 11 Dec 2008 23:15:38 -0700 Subject: [PATCH] Fix undefined error --- imp/lib/UI/Mailbox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/UI/Mailbox.php b/imp/lib/UI/Mailbox.php index 15f58930e..7df4052fc 100644 --- a/imp/lib/UI/Mailbox.php +++ b/imp/lib/UI/Mailbox.php @@ -117,7 +117,7 @@ class IMP_UI_Mailbox } } - if ($full && !isset($ret['fullfrom'])) { + if (!empty($options['fullfrom']) && !isset($ret['fullfrom'])) { $ret['fullfrom'] = $ret['from']; } -- 2.11.0