Quote:
Originally Posted by krohnathlonman
under this:
PHP Code:
$bah = str_replace(" ", "_", $thread[title]);
Put
PHP Code:
$bah = str_replace(":", "", $thread[title]);
I've also noticed the problem with -'s basically anthing that causes an error have it search and replace 
|
there is a litte mistake in the code. there must be:
PHP Code:
$bah = str_replace(":", "", $bah);
if you call the replace function the second time

... and the third ...and so on...