From ec0e3bf0bb3b7a27f5448c2c38a7b14e641b302d Mon Sep 17 00:00:00 2001 From: stekkel Date: Fri, 27 Dec 2002 14:38:10 +0000 Subject: [PATCH] oops, Rfc822Header->mailbox was initialized git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4315 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/mime/Rfc822Header.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/class/mime/Rfc822Header.class.php b/class/mime/Rfc822Header.class.php index f4db5a02..00cda0e3 100644 --- a/class/mime/Rfc822Header.class.php +++ b/class/mime/Rfc822Header.class.php @@ -278,7 +278,7 @@ class Rfc822Header { } } } - if (!isset($addr_structure->mailbox)) { + if (!$addr_structure->mailbox) { $addr_structure->mailbox = trim($addr); if ($host) { $addr_structure->host = $host; @@ -338,7 +338,7 @@ class Rfc822Header { } } } - if (!isset($addr_structure->mailbox)) { + if (!$addr_structure->mailbox) { $addr_structure->mailbox = trim($addr); if ($host) { $addr_structure->host = $host; -- 2.25.1