Fix from Thomas Castelle.
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 25 Apr 2003 15:47:18 +0000 (15:47 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 25 Apr 2003 15:47:18 +0000 (15:47 +0000)
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

index 4e7dc48e8be1ef0bb08f5c541b06bae81fea8f5a..f346ed43b290f5a59dc82b52ed422cde48372bf6 100644 (file)
@@ -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':