Quote:
Originally Posted by T3MEDIA
Maybe you can help... my feeds keep turning "&" into "&" and of course ruins the feed. is there a way to stop that? as well the egex commands do not seem to be working.
|
Just find this in articlebot.php
PHP Code:
$thread_id = $db->insert_id();
And insert below.
PHP Code:
$article['description'] = str_replace('&', '&', $article['description']);
That should fix it. There are posts earlier in this thread that help deal with these isssues.