Browse Source

remove the retard function html_entity_decode_utf8(). not sure why seisatsu added it in the first place.

pull/40/head
Savetheinternet 13 years ago
parent
commit
85d37a55c3
  1. 2
      inc/display.php
  2. 20
      inc/functions.php

2
inc/display.php

@ -114,7 +114,7 @@
$body = strip_tags($body);
// Unescape HTML characters, to avoid splitting them in half
$body = html_entity_decode_utf8($body);
$body = html_entity_decode($body, ENT_NOQUOTES, 'UTF-8');
// calculate strlen() so we can add "..." after if needed
$strlen = strlen($body);

20
inc/functions.php

@ -1300,24 +1300,6 @@
$body = preg_replace("/\n/", '<br/>', $body);
}
function html_entity_decode_utf8($string) {
static $trans_tbl;
// replace numeric entities
$string = preg_replace('~&#x([0-9a-f]+);~ei', 'code2utf(hexdec("\\1"))', $string);
$string = preg_replace('~&#([0-9]+);~e', 'code2utf(\\1)', $string);
// replace literal entities
if (!isset($trans_tbl)) {
$trans_tbl = array();
foreach (get_html_translation_table(HTML_ENTITIES) as $val=>$key)
$trans_tbl[$key] = utf8_encode($val);
}
return strtr($string, $trans_tbl);
}
// Returns the utf string corresponding to the unicode value (from php.net, courtesy - [email protected])
function code2utf($num) {
if ($num < 128)
@ -1496,7 +1478,7 @@
$gcf = hcf($numerator, $denominator);
$numerator = $numerator / $gcf;
$denominator = $denominator / $gcf;
return "{$numerator}{$sep}{$denominator}";
}

Loading…
Cancel
Save