Quote:
Originally Posted by Slapyo
what about this?
PHP Code:
$rss_title = str_replace(" ", " ", $rss_title); $rss_description = str_replace(" ", " ", $rss_description);
|
Nope, that didn't work :/
Now I have a problems with bold and italics in posts as well...
I tried:
PHP Code:
// change <b> tags
$rss_description = str_replace("<b>", "[b]", $rss_description);
$rss_description = str_replace("</b>", "[/b]", $rss_description);
// change <i> tags
$rss_description = str_replace("<i>", "[i]", $rss_description);
$rss_description = str_replace("</i>", "[/i]", $rss_description);
But that didn't work. Should I just do a replacement var for those?
Thanks again!