Happy New Year
[squirrelmail.git] / functions / decode / cp1255.php
index f6c1c05f004a77af1e205cdecef2cd5fab4b854b..f8c3e8dd0af6ad6ebed31943593849bc0e3f3c81 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/cp1255.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This file contains cp1255 decoding function that is needed to read
  * cp1255 encoded mails in non-cp1255 locale.
  *
@@ -18,6 +16,8 @@
  *   Date:          1/7/2000
  *   Contact:       cpxlate@microsoft.com
  *
+ * @copyright 2003-2020 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_cp1255 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'windows-1255')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'windows-1255'))
         return $string;
@@ -173,5 +168,3 @@ function charset_decode_cp1255 ($string) {
 
     return $string;
 }
-
-?>
\ No newline at end of file