From: stekkel Date: Fri, 25 Apr 2003 15:47:18 +0000 (+0000) Subject: Fix from Thomas Castelle. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8e62db7978c9f3630102d3cb84092024ca351854;p=squirrelmail.git Fix from Thomas Castelle. This will fix the out of order argument list situation in case of literal arguments. Literal arguments weren't added to the argument array git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4812 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/class/mime/Message.class.php b/class/mime/Message.class.php index 4e7dc48e..f346ed43 100644 --- a/class/mime/Message.class.php +++ b/class/mime/Message.class.php @@ -288,7 +288,7 @@ class Message { break; case '{': /* process the literal value */ - $arg_s = $this->parseLiteral($read, $i); + $arg_a[] = $this->parseLiteral($read, $i); ++$arg_no; break; case '0':