Quote:
Originally Posted by Blaine0002
yeah steve, i guess i thought i fixed this in the newest version.
its a simple fix, just add an addslashes to the wysiwyg variable before it gets entered into the db, and another stripslashes when its pulled out.
|
Is the wysiwyg variable in this template? vbay_new_auction2
This is what I found in the vbay_new_auction2 template:
<input type="hidden" name="wysiwyg" value="{$vbulletin->GPC['wysiwyg']}">
What do the addslashes and stripslashes look like? and where should I insert them?
Ten minutes later....
Would this be correct?
<input type="hidden" name=addslashes"wysiwyg" value=stripslashes"{$vbulletin->GPC['wysiwyg']}">
Thanks for the help!