Increment year in copyright notice.
[squirrelmail.git] / functions / encode / us_ascii.php
index f424e42ff046dbb39a1a80489d0b250f23968667..e3a25ee5f76625160c4ee56df60ab64ff486d7f7 100644 (file)
@@ -6,7 +6,7 @@
  * Unsupported characters are replaced with ?.
  *
  * @version $Id$
  * Unsupported characters are replaced with ?.
  *
  * @version $Id$
- * @copyright Copyright © SquirrelMail Development Team, 2004
+ * @copyright Copyright © 2004-2005 The SquirrelMail Project Team
  * @package squirrelmail
  * @subpackage encode
  */
  * @package squirrelmail
  * @subpackage encode
  */
@@ -22,17 +22,17 @@ function charset_encode_us_ascii ($string) {
 
     $string=preg_replace("/&#([0-9]+);/e","unicodetousascii('\\1')",$string);
     // $string=preg_replace("/&#[xX]([0-9A-F]+);/e","unicodetousascii(hexdec('\\1'))",$string);
 
     $string=preg_replace("/&#([0-9]+);/e","unicodetousascii('\\1')",$string);
     // $string=preg_replace("/&#[xX]([0-9A-F]+);/e","unicodetousascii(hexdec('\\1'))",$string);
-    
+
     return $string;
 }
 
 /**
  * Return us-ascii symbol when unicode character number is provided
     return $string;
 }
 
 /**
  * Return us-ascii symbol when unicode character number is provided
- * 
+ *
  * This function is used internally by charset_encode_us_ascii
  * function. It might be unavailable to other squirrelmail functions.
  * This function is used internally by charset_encode_us_ascii
  * function. It might be unavailable to other squirrelmail functions.
- * Don't use it or make sure, that functions/encode/us_ascii.php is 
- * included. 
+ * Don't use it or make sure, that functions/encode/us_ascii.php is
+ * included.
  *
  * @param int $var decimal unicode value
  * @return string us-ascii character
  *
  * @param int $var decimal unicode value
  * @return string us-ascii character