Quote:
Originally Posted by anabolicedge
after uploading the functions.php file this is what errors i get
Parse error: parse error in /home/anabol/public_html/forum/includes/functions.php on line 1755
Fatal error: Call to undefined function: is_browser() in /home/anabol/public_html/forum/global.php on line 59
|
A lot of people have been getting this error.
I presume you're all using the Dreamweaver text editor?
The solution is, don't! ;)
Dreamweaver appears to automatically edit (and screw up) this line in functions.php (1755):
PHP Code:
$debughtml .= " (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') === false, '?', '&') . "tempusage=1\">Template Usage</a>) (<a href=\"" .
Use a different text editor to make the change to functions.php, and you won't have this problem. :)
|