Quote:
Originally Posted by Edrondol
I got the same thing and tested without a ' in the answer and it worked. So is there a quick way to fix this or do I just have to relearn how to type things?
|
I've double checked the file support.php and is correct, according to vB's style for clearing the inputs. If you see at lines 355-365, you'll find:
Code:
$vbulletin->input->clean_array_gpc('p', array(
'wysiwyg' => TYPE_BOOL,
'message' => TYPE_STR,
'question' => TYPE_NOHTML,
'categoryid' => TYPE_UINT,
'important' => TYPE_UINT
));
// Get Values
$title = $db->escape_string($vbulletin->GPC['question']);
$answer = convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message']);
Could you please try, by changing:
Code:
'question' => TYPE_NOHTML,
to
Code:
'question' => TYPE_STR,
Maria