Quote:
Originally Posted by jdleung
Chinese name cannot be displayed normally in admin comment page. but the message is ok.
found two lines in admin/comments.php
$message = pullout($row['message']);
$name = htmlentities(pullout($row['name']));
can use htmlspecialchars() instead? and why doesn't $message need too?
|
http://forum.pixelpost.org/showpost....6&postcount=10
In PP 1.6 final edit line 243
delete htmlentities
Quote:
|
$name = pullout($row['name']);
|