Just in case, class_bbcode_alt.php has an array of tags to ignore when parsing for the WYSIWYG editor you could maybe add SQL to the array somehow. Might not work, but I saw it yesterday so just thought I'd mention it
Just in case, class_bbcode_alt.php has an array of tags to ignore when parsing for the WYSIWYG editor you could maybe add SQL to the array somehow. Might not work, but I saw it yesterday so just thought I'd mention it
Just in case, class_bbcode_alt.php has an array of tags to ignore when parsing for the WYSIWYG editor you could maybe add SQL to the array somehow. Might not work, but I saw it yesterday so just thought I'd mention it
Thanks. I'll have a look at that in the next few days, if its that simple then it will get fixed.
I've just had a look, and this might work (looked in 3.7 files though). Create a plugin at bbcode_create. Add this PHP:
PHP Code:
if ($this->is_wysiwyg() AND (isset($this->tag_list['no_option']['sql']) OR isset($this->tag_list['option']['sql']))) { unset($this->tag_list['no_option']['sql'], $this->tag_list['option']['sql']); }