My News page seems to love showing a slash before every apostophe. Look at the first news entry here.
I tried using this script, but it doesn't look like it wants to work:
<?php
$newsFile = file_get_contents("database/news.txt");
str_replace("\'", "'", $newsFile);
$openFile = fopen("database/news.txt", "w");
fwrite($openFile, $newsFile);
fclose($openFile);
echo 'Your news file has been updated.';
?>
Is there something I'm doing wrong?