Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

--TEST--
Bug #9722   _quotedPrintableEncode does not encode dot at start of line on Windows platform
--SKIPIF--
--FILE--
<?php
error_reporting(E_ALL); // ignore E_STRICT
include("Mail/mimePart.php");
$part = new Mail_mimePart('', array('eol'=>"\n"));
$text = "This
is a
test
...
    It is 
//really fun//
to make :(";

print_r($part->_quotedPrintableEncode($text));

--EXPECT--
This
is a
test
=2E..
    It is=20
//really fun//
to make :(