Revert "Convert any UTF-7 to UTF-8 so that fragment pages (like AJAX replies)"

This will break many legal UTF-8 strings.

This reverts commit 1c5c2e7de4.
This commit is contained in:
Bharat Mediratta
2012-05-16 12:01:41 -07:00
parent 0a8325bae8
commit 355679fa55

View File

@@ -31,7 +31,7 @@ class SafeString_Core {
$this->_is_safe_html = $string->_is_safe_html;
$string = $string->unescaped();
}
$this->_raw_string = mb_convert_encoding((string) $string, 'UTF-8', 'UTF-7');
$this->_raw_string = (string) $string;
}
/**