Clarify language
[squirrelmail.git] / functions / decode / cp1257.php
index 12fc82f6f7bf1df7a1c2e805d594411044862de9..1bd2144312094f648499e271c8f539a8c8b9146a 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/cp1257.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This file contains cp1257 decoding function that is needed to read
  * cp1257 encoded mails in non-cp1257 locale.
  *
@@ -18,6 +16,8 @@
  *  Date:          04/15/98
  *  Contact:       cpxlate@microsoft.com
  *
+ * @copyright &copy; 2003-2006 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_cp1257 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'windows-1257')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'windows-1257'))
         return $string;
@@ -161,5 +156,3 @@ function charset_decode_cp1257 ($string) {
 
     return $string;
 }
-
-?>
\ No newline at end of file