Increment year in copyright notice.
[squirrelmail.git] / functions / decode / cp1256.php
index 3608263a07b19a826fb7ba22d70c91db9f120a06..1e6944de89c820aa826c565ab2db5e297f26ec9e 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * decode/cp1256.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 cp1256 decoding function that is needed to read
  * @return string $string Decoded string
  */
 function charset_decode_cp1256 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'windows-1256')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'windows-1256'))
         return $string;