My users have <br/>/<br/> posted next to all of the fields. Anyway I can remove this? Here is the code I have, please tell me what to edit. Thank you.
if($vbulletin->options['custom_thread_fields_enabled'])
{
$getcustomthreadfields = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "custom_thread_forms");
while($forms = $db->fetch_array($getcustomthreadfields))
{
$custom_formid = "custom_$forms[custom_formid]";
$value = $vbulletin->input->clean_gpc('p', $custom_formid, TYPE_STR);
if($forms['required'] == 1 && empty($value))
{
eval(standard_error(fetch_error('fill_in_custom_th read_field')));
}
if($forms['fieldtype'] == 1)
$value = nl2br($value);
$forumids = explode(",", $forms['forumid']);
if(!empty($value))
{
if(in_array($foruminfo['forumid'], $forumids) OR $forms['forumid'] == "-1" )
{
$custom_message .= "".$forms['title'].": $value<br /><br />";
$break = "<br /><br />";
}
}
}
$vbulletin->GPC['message'] = $vbulletin->GPC['message'] . "$break $custom_message";
}
|