From: Michael M Slusarz Date: Fri, 12 Dec 2008 06:15:38 +0000 (-0700) Subject: Fix undefined error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b8410190a38273de2a733303c748d50e5290675e;p=horde.git Fix undefined error --- 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']; }