For anyone that has the Google Keywords Mod or is using Mod Rewrite, add these lines to your sitemap.php page.
Code: Select all
$topic['topic_title'] = strtolower(str_replace(array(' ','"','&','\r\n','\n','/','\\','+','<','>'), '-', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('é','è','ë','ê','É','È','Ë','Ê'), 'e', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('í','ì','î','ï','Í','Ì','Î','Ï'), 'i', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ó','ò','ô','Ó','Ò','Ô'), 'o', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ö','Ö'), 'oe', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('á','à','â','Á','À','Â'), 'a', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ä','Ä'), 'ae', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ú','ù','û','Ú','Ù','Û'), 'u', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ü','Ü'), 'ue', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('ß'), 'ss', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('/[^a-z0-9\-<>]/','/[\-]+/','/<[^>]*>/'), '-', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('--'), '-', $topic['topic_title']));
$topic['topic_title'] = strtolower(str_replace(array('<b>','</b>','\'','?','!',',','.','/'), '', $topic['topic_title']));
I am getting errors with the date output after this modification.