There are too many modified files being committed without the copyright year being...
[squirrelmail.git] / functions / decode / iso_8859_11.php
index 3fb9e881c3f85dfc35e567602ae75486b48d9568..9f9abf97bcbb9f2d49abbc7d111acf6d8a11f441 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/iso8859-11.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-11 decoding function that is needed to read
  * iso-8859-11 encoded mails in non-iso-8859-11 locale.
  *
@@ -35,6 +33,8 @@
  *        internal or external distribution as long as this notice remains
  *        attached.
  *
+ * @copyright &copy; 2003-2009 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_11 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'iso-8859-11')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'iso-8859-11'))
         return $string;
@@ -150,5 +145,3 @@ function charset_decode_iso_8859_11 ($string) {
 
     return $string;
 }
-
-?>
\ No newline at end of file