Add "Security:" with relevant changelog items and add CVE id's.
[squirrelmail.git] / functions / decode / iso_8859_2.php
index cde643bb711aea23294afdc87bb4779878254961..7450569d98ca18eef2d7a7e4c89f47fe41bda7f6 100644 (file)
@@ -7,7 +7,7 @@
  *
  * This file contains iso-8859-2 decoding function that is needed to read
  * iso-8859-2 encoded mails in non-iso-8859-2 locale.
- * 
+ *
  * Original data taken from:
  *  ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-2.TXT
  *
  * @return string $string Decoded string
  */
 function charset_decode_iso_8859_2 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'iso-8859-2')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'iso-8859-2'))
         return $string;