I am new to Zen and having a problem with the following code. If you go to http://www.givecourage.com/ you will see that whenever I click on one of the titles in the Categories box I get this error message. Can anybody help me please.
Warning: Cannot modify header information - headers already sent by (output started at /home/b4after4/public_html/includes/languages/english/future_zen/index.php:60) in /home/b4after4/public_html/includes/functions/functions_general.php on line 41
// clean up URL before executing it
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) $url = str_replace('&', '&', $url);
header('Location: ' . $url);
zen_exit();



