From 8e62db7978c9f3630102d3cb84092024ca351854 Mon Sep 17 00:00:00 2001 From: stekkel Date: Fri, 25 Apr 2003 15:47:18 +0000 Subject: [PATCH] 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 --- class/mime/Message.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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': -- 2.25.1