소스 검색

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

stekkel 22 년 전
부모
커밋
018f966bc9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      class/mime/Message.class.php

+ 1 - 1
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':