Quote:
Today at 03:37 PM glo said this in Post #134
Any thoughts?
|
This might fix it:
edit webtemplate.php, find:
PHP Code:
maketextareacode("Template<br><br>","headerfootertemplate",'',25,80);
Replace it as:
PHP Code:
maketextareacode("Template<br><br>","template",'',25,80);
Find:
PHP Code:
$headerfootertemplate=trim($headerfootertemplate);
Replace it as:
PHP Code:
$headerfootertemplate=trim($template);
(2 instances, replace both)
Find:
PHP Code:
maketextareacode("Template<br><br>","headerfootertemplate",$webtemplate['template'],25,80);
REplace it as:
PHP Code:
maketextareacode("Template<br><br>","template",$webtemplate['template'],25,80);