Happy New Year
[squirrelmail.git] / functions / decode / cp1256.php
index 3608263a07b19a826fb7ba22d70c91db9f120a06..aada50100da85232ccc385a8e78008399747afc1 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/cp1256.php
  *
- * Copyright (c) 2003-2004 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
  * cp1256 encoded mails in non-cp1256 locale.
  *
@@ -18,6 +16,8 @@
  *   Date:          01/5/99
  *   Contact:       cpxlate@microsoft.com
  *
+ * @copyright 2003-2018 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  * @subpackage decode
  * @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;
@@ -173,5 +168,3 @@ function charset_decode_cp1256 ($string) {
 
     return $string;
 }
-
-?>
\ No newline at end of file