Happy New Year
[squirrelmail.git] / functions / decode / iso_8859_8.php
index a5668ca6335660be1e3a143d6c1ddc9b49a33ec3..e3aba1be8e9845bc1a9effafd9e745b23bbc601c 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/iso8859-8.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This file contains iso-8859-8 decoding function that is needed to read
  * iso-8859-8 encoded mails in non-iso-8859-8 locale.
  *
@@ -35,6 +33,8 @@
  *  internal or external distribution as long as this notice remains
  *  attached.
  *
+ * @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_iso_8859_8 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'iso8859-8')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'iso-8859-8'))
         return $string;
@@ -122,4 +117,3 @@ function charset_decode_iso_8859_8 ($string) {
 
     return $string;
 }
-?>
\ No newline at end of file