Ensure that hash directory computation is the same on both 32 and 64 bit architecture...
[squirrelmail.git] / functions / decode / cp1252.php
index 382381fb1001c6cde62c1a165d3f71ce401e3da7..b94c3771eedbeef550c4799d056e93fe59564c36 100644 (file)
@@ -1,10 +1,8 @@
 <?php
+
 /**
  * decode/cp1252.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This file contains cp1252 decoding function that is needed to read
  * cp1252 encoded mails in non-cp1252 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
  */
 
 function charset_decode_cp1252 ($string) {
-    global $default_charset;
-
-    if (strtolower($default_charset) == 'windows-1252')
-        return $string;
-
     // don't do decoding when there are no 8bit symbols
     if (! sq_is8bit($string,'windows-1252'))
         return $string;
@@ -174,5 +169,3 @@ function charset_decode_cp1252 ($string) {
 
     return $string;
 }
-
-?>
\ No newline at end of file