File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
--- /dev/null
2
2
+++ ../library/Zend/Mime.php
3
3
@@ -38,7 +38,7 @@
4
- const ENCODING_BASE64 = 'base64';
5
- const DISPOSITION_ATTACHMENT = 'attachment';
6
- const DISPOSITION_INLINE = 'inline';
7
- - const LINELENGTH = 72;
8
- + const LINELENGTH = 200;
9
- const LINEEND = "\n";
10
- const MULTIPART_ALTERNATIVE = 'multipart/alternative';
11
- const MULTIPART_MIXED = 'multipart/mixed';
4
+ public const ENCODING_BASE64 = 'base64';
5
+ public const DISPOSITION_ATTACHMENT = 'attachment';
6
+ public const DISPOSITION_INLINE = 'inline';
7
+ - public const LINELENGTH = 72;
8
+ + public const LINELENGTH = 200;
9
+ public const LINEEND = "\n";
10
+ public const MULTIPART_ALTERNATIVE = 'multipart/alternative';
11
+ public const MULTIPART_MIXED = 'multipart/mixed';
Original file line number Diff line number Diff line change 14
14
@@ -2422,5 +2424,31 @@
15
15
}
16
16
17
- return implode($decoded);
17
+ return implode('', $decoded);
18
18
+ }
19
19
+
20
20
+ /**
You can’t perform that action at this time.
0 commit comments