Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -1912,22 +1912,12 @@ |
1913 | 1913 | } |
1914 | 1914 | |
1915 | 1915 | /** |
1916 | | - * Actually output something with print(). Performs an iconv to the |
1917 | | - * output encoding, if needed. |
| 1916 | + * Actually output something with print(). |
1918 | 1917 | * |
1919 | 1918 | * @param $ins String: the string to output |
1920 | 1919 | */ |
1921 | 1920 | public function out( $ins ) { |
1922 | | - global $wgContLang; |
1923 | | - if ( 0 == strcmp( 'UTF-8', 'UTF-8' ) ) { |
1924 | | - $outs = $ins; |
1925 | | - } else { |
1926 | | - $outs = $wgContLang->iconv( 'UTF-8', 'UTF-8', $ins ); |
1927 | | - if ( false === $outs ) { |
1928 | | - $outs = $ins; |
1929 | | - } |
1930 | | - } |
1931 | | - print $outs; |
| 1921 | + print $ins; |
1932 | 1922 | } |
1933 | 1923 | |
1934 | 1924 | /** |