newest version: 1.25 (PHP > 4.3.0) and 1.25a (PHP < 4.3.0)
this update fixes the problems with " and it also will insert into the scheduled task log if you have it turned on ... atleast it should. heh, of course any problems let me know.
files changed are: rss.php and rss_update.php ... so if you want to make the changes yourself, or just upload those 2 files ... that's fine.
in rss.php FIND:
ABOVE ADD:
Code:
log_cron_action('RSS News Feed Posted', $nextitem);
in rss_update.php FIND:
Code:
// Setup the thread
ABOVE ADD:
Code:
$rss_title = str_replace(""", "\"", $rss_title);
$rss_description = str_replace(""", "\"", $rss_description);
$rss_title = str_replace("'", "'", $rss_title);
$rss_description = str_replace("'", "'", $rss_description);