I get an error when I do what you said to do here:
In admin/functions.php, find (not entire line):
PHP Code:
global $showdeficon,$displayemails,$enablepms,$allowsignatures,$wordwrap,$dateformat,$timeformat,$logip
After that, add:
if (!empty($post['postbithtml']))
{
$username = $post['username'];
eval("\$post['username'] = \"" . addslashes($post['postbithtml']) .
"\";");
}
I Put this
PHP Code:
$showdeficon,$displayemails,$enablepms,$allowsignatures,$wordwrap,$dateformat,$timeformat,$logip if (!empty($post['postbithtml']))
{
$username = $post['username'];
eval("\$post['username'] = \"" . addslashes($post['postbithtml']) .
"\";");
}
and I get a mySQL error on my page on line 113 in functions.php
...
what am I doing wrong? Can someone please update me? how should I put that format?