html_format函数少了$str=stripslashes($str)语句,图片不能正常显示。
# cvs diff pcfuncs.php
Index: pcfuncs.php
===================================================================
RCS file: /home/cvs/www2/pc/pcfuncs.php,v
retrieving revision 1.1
diff -r1.1 pcfuncs.php
144c144,145
< $str = str_replace(" "," ",htmlspecialchars($str));
---
> $str = str_replace(" "," ",htmlspecialchars($str));
> $str=stripslashes($str);
--
FROM 202.193.5.*