Happy New Year
[squirrelmail.git] / functions / decode / iso_8859_15.php
index f6dc426f954cc45b552202aaa0d1c1588e218268..2e9886a59db5dfec9d96df11a664bfa751e26fda 100644 (file)
@@ -1,13 +1,11 @@
 <?php
+
 /**
  * decode/iso8859-15.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-15 decoding function that is needed to read
  * iso-8859-15 encoded mails in non-iso-8859-15 locale.
- * 
+ *
  * Original data taken from:
  *  ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-15.TXT
  *
@@ -36,6 +34,8 @@
  *  internal or external distribution as long as this notice remains
  *  attached.
  *
+ * @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_iso_8859_15 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'iso-8859-15')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'iso-8859-15'))
         return $string;
@@ -159,4 +154,3 @@ function charset_decode_iso_8859_15 ($string) {
 
     return $string;
 }
-?>
\ No newline at end of file