From cf92500bf844ba324a9dff9665da60c65d5c5973 Mon Sep 17 00:00:00 2001 From: cigamit Date: Thu, 28 Oct 2004 05:17:41 +0000 Subject: [PATCH] Minor bug fix, just a misspelled variable git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8261 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_messages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/imap_messages.php b/functions/imap_messages.php index a9011edc..2a0e4e53 100755 --- a/functions/imap_messages.php +++ b/functions/imap_messages.php @@ -831,7 +831,7 @@ function sqimap_parse_envelope($read, &$i, &$msg) { if (count($arg_a) > 9) { $d = strtr($arg_a[0], array(' ' => ' ')); $d = explode(' ', $d); - if (!$arg_a[1]) $arg_1[1] = ''; + if (!$arg_a[1]) $arg_a[1] = ''; $msg['DATE'] = $d; /* argument 1: date */ $msg['SUBJECT'] = $arg_a[1]; /* argument 2: subject */ $msg['FROM'] = is_array($arg_a[2]) ? $arg_a[2][0] : ''; /* argument 3: from */ -- 2.25.1