
Originally Posted by
elishama3
BTW, I found two bugs in the includes/classes/rss_feed.php file:
lines 406-407 are:
#
$in[] = '@&(mdash);@i'; $out[] = '?;
#
$in[] = '@&(reg);@i'; $out[] = '?';
but they should be:
#
$in[] = '@&(mdash);@i'; $out[] = '?';
#
$in[] = '@&(reg);@i'; $out[] = '?';
and lines 429-430 are:
#
$st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160);
#
$st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";
but they should be:
#
$st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160)";
#
$st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";
hope this helps someone.
the code is my file is....
Code:
$in[] = '@&(mdash);@i'; $out[] = '—';
$in[] = '@&(reg);@i'; $out[] = '®';
Code:
$st_in[] = '@<li>@i'; $st_out[] = "\n•".chr(160);
$st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";
Bookmarks