moving include to the top.
[squirrelmail.git] / functions / decode / cp1250.php
index e2156c635bebf09f645f6f9b1a4c8324ceb314ce..52890a470d13d1912a9859f376539c0366928433 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * decode/cp1250.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
+ * Copyright (c) 2003-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file contains cp1250 decoding function that is needed to read
  * @return string $string Decoded string
  */
 function charset_decode_cp1250 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'windows-1250')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'windows-1250'))
         return $string;