clean up code commented out since 8 y
[squirrelmail.git] / functions / encode / us_ascii.php
index 965fada9706a3bda0013659538deb9e9d57f1b86..e870b9ff9036292dc061e884ecb83a5ce02d92eb 100644 (file)
@@ -23,7 +23,6 @@ function charset_encode_us_ascii ($string) {
    if (! preg_match("'&#[0-9]+;'",$string) ) return $string;
 
     $string=preg_replace("/&#([0-9]+);/e","unicodetousascii('\\1')",$string);
-    // $string=preg_replace("/&#[xX]([0-9A-F]+);/e","unicodetousascii(hexdec('\\1'))",$string);
 
     return $string;
 }