Clarifying a TODO.
[squirrelmail.git] / functions / encode / cp1251.php
index 7755d1c916810f8f5786fd8f7430e52e985185ae..9a485262c3847cbe7fb92d21b5652f5a2741e0cd 100644 (file)
@@ -1,12 +1,14 @@
 <?php
+
 /**
  * cp1251 encoding functions
  *
  * takes a string of unicode entities and converts it to a cp1251 encoded string
  * Unsupported characters are replaced with ?.
  *
+ * @copyright &copy; 2004-2009 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
- * @copyright Copyright &copy; SquirrelMail Development Team, 2004
  * @package squirrelmail
  * @subpackage encode
  */
@@ -22,17 +24,17 @@ function charset_encode_cp1251 ($string) {
 
     $string=preg_replace("/&#([0-9]+);/e","unicodetocp1251('\\1')",$string);
     // $string=preg_replace("/&#[xX]([0-9A-F]+);/e","unicodetocp1251(hexdec('\\1'))",$string);
-    
+
     return $string;
 }
 
 /**
  * Return cp1251 symbol when unicode character number is provided
- * 
- * This function is used internally by charset_encode_cp1251 
- * function. It might be unavailable to other squirrelmail functions.
- * Don't use it or make sure, that functions/encode/cp1251.php is 
- * included. 
+ *
+ * This function is used internally by charset_encode_cp1251
+ * function. It might be unavailable to other SquirrelMail functions.
+ * Don't use it or make sure, that functions/encode/cp1251.php is
+ * included.
  *
  * @param int $var decimal unicode value
  * @return string cp1251 character
@@ -174,4 +176,3 @@ function unicodetocp1251($var) {
     }
     return $ret;
 }
-?>
\ No newline at end of file