1 markran Nov 21, 2005 04:51
3 iceblood May 14, 2006 00:24
If you dont want to turn off the html checker completely but allow certain elements you can edit the _formatting.php file in the /conf/ dir.
For instance you can allow onclick by editing what can define the <a> tag...
Line 240
// 'a' => A_attrs.' charset type href hreflang rel rev shape coords', // Strict
'a' => A_attrs.' charset type href hreflang rel rev shape coords target', // Transitional
Just add onclick to these lines like so...
Line 240
// 'a' => A_attrs.' charset type href hreflang rel rev shape coords onclick', // Strict
'a' => A_attrs.' charset type href hreflang rel rev shape coords target onclick', // Transitional
neat arrows.... well you get the idea.
4 gerri Jun 17, 2007 00:37
Thanks Iceblood! I was having the same issue and your suggestion fixed me right up!
I'll reply to my own question
It's in conf/_formatting.php
$use_html_checker = 1;
However it seems like the flag disables it for both posts and comments. I want to keep checking on comments but turn it off for posts (because I'm the only one posting). The actual parameters are set independantly for posts and comments. Trying to figure that out now...
EDITED:
My solution is here: http://forums.b2evolution.net/viewtopic.php?t=3807
--- Mark