Quote:
Since upgrading to 3.7 all I get now are pages that say header, any idea how to fix this?
|
For those who is having this problem, here is a quick fix:
Edit includes/wt_include.php, find
PHP Code:
function WTgettemplate($template, $escape = 1, $gethtmlcomments = 1)
{
extract ($GLOBALS);
REPLACE it as:
PHP Code:
function WTgettemplate($template, $escape = 1, $gethtmlcomments = 1)
{
//extract ($GLOBALS);
This should fix it.
@Beermonster: I've already fixed yours, thx!