Home
last modified time | relevance | path

Searched refs:fixLE (Results 1 – 1 of 1) sorted by relevance

/plugin/swiftmail/Swift/Message/
H A DEncoder.php206 $ret .= $this->fixLE($matches[0] . "=", $le); //fixLE added 24/08/07
216 $ret .= $this->fixLE($le . $matches[0] . "=", $le); //fixLE added 24/08/07
275 if (count($next[0])) $cache->write("qp", $this->fixLE(implode("=" . $le, $next[0]), $le));
288 return $this->fixLE(wordwrap($data, $chunk-2, $le, 1), $le);
304 $cache->write("7b", $this->fixLE(wordwrap($ret, $chunk-2, $le, 1), $le));
316 return $this->fixLE(wordwrap($data, $chunk-2, $le, 1), $le);
332 $cache->write("8b", $this->fixLE(wordwrap($ret, $chunk-2, $le, 1), $le));
445 protected function fixLE($data, $le) function in Swift_Message_Encoder