lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php 1 location
|
@@ 112-117 (lines=6) @@
|
109 |
|
|
110 |
|
$currentLine .= $enc; |
111 |
|
|
112 |
|
if ($i === false) { |
113 |
|
$lineLen += $size; |
114 |
|
} else { |
115 |
|
// 6 is the length of '=0D=0A'. |
116 |
|
$lineLen = $size - strrpos($enc, '=0D=0A') - 6; |
117 |
|
} |
118 |
|
} |
119 |
|
|
120 |
|
if ($currentLine !== '') { |
lib/classes/Swift/Encoder/QpEncoder.php 1 location
|
@@ 218-223 (lines=6) @@
|
215 |
|
|
216 |
|
$currentLine .= $enc; |
217 |
|
|
218 |
|
if ($i === false) { |
219 |
|
$lineLen += $size; |
220 |
|
} else { |
221 |
|
// 6 is the length of '=0D=0A'. |
222 |
|
$lineLen = $size - strrpos($enc, '=0D=0A') - 6; |
223 |
|
} |
224 |
|
} |
225 |
|
|
226 |
|
return $this->_standardize(implode("=\r\n", $lines)); |