lib/classes/Swift/Encoder/QpEncoder.php 1 location
|
@@ 211-216 (lines=6) @@
|
| 208 |
|
|
| 209 |
|
$currentLine .= $enc; |
| 210 |
|
|
| 211 |
|
if ($i === false) { |
| 212 |
|
$lineLen += $size; |
| 213 |
|
} else { |
| 214 |
|
// 6 is the length of '=0D=0A'. |
| 215 |
|
$lineLen = $size - strrpos($enc, '=0D=0A') - 6; |
| 216 |
|
} |
| 217 |
|
} |
| 218 |
|
|
| 219 |
|
return $this->_standardize(implode("=\r\n", $lines)); |
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 !== '') { |