mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-09 15:35:21 -04:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user