diff -r 8baccbad4a55 -r a932ce8c4827 punbb/header.php --- a/punbb/header.php Sun Apr 06 00:35:38 2008 -0400 +++ b/punbb/header.php Sun Jun 15 01:42:31 2008 -0400 @@ -75,9 +75,9 @@ if (strpos(PUN_PAGE, 'profile') === 0) echo ''."\n"; -?> -<?php echo generate_crumbs(true) ?> -tpl_strings['PAGE_NAME'] = generate_crumbs(true); // Should we output feed links? if (PUN_PAGE == 'viewtopic') @@ -132,8 +132,10 @@ ($hook = get_hook('hd_head')) ? eval($hook) : null; $tpl_temp = trim(ob_get_contents()); + $template->add_header($tpl_temp); ob_end_clean(); + // END SUBST - @@ -147,13 +149,13 @@ // END SUBST - // START SUBST - -$tpl_main = str_replace('', '
'."\n\t".'
'.htmlspecialchars($pun_config['o_board_title']).'
'."\n".'
'."\n", $tpl_main); +$tpl_main = str_replace('', '', $tpl_main); // '
'."\n\t".'
'.htmlspecialchars($pun_config['o_board_title']).'
'."\n".'
'."\n", $tpl_main); // END SUBST - // START SUBST - if ($pun_config['o_board_desc'] != '') - $tpl_main = str_replace('', '
'."\n\t".'
'.htmlspecialchars($pun_config['o_board_desc']).'
'."\n".'
'."\n", $tpl_main); + $tpl_main = str_replace('', '', $tpl_main); // '
'."\n\t".'
'.htmlspecialchars($pun_config['o_board_desc']).'
'."\n".'
'."\n", $tpl_main); // END SUBST -