Hmm i am afraid still not working
using this
Quote:
if ($_POST['do'] == 'updateprofile')
{
$vbulletin->input->clean_gpc('userfield', TYPE_ARRAY);
$fieldcontentbefore = array(
'aaa',
'ccc'
);
$fieldcontentafter = array(
'bbb',
'ddd'
);
$vbulletin->GPC[field1] = str_replace($fieldcontentbefore, $fieldcontentafter, $vbulletin->GPC[field1]);
}
|
or this
Quote:
if ($_POST['do'] == 'updateprofile')
{
$vbulletin->input->clean_gpc('userfield', TYPE_ARRAY);
$fieldcontentbefore = array(
'aaa',
'ccc'
);
$fieldcontentafter = array(
'bbb',
'ddd'
);
$vbulletin->GPC['field1'] = str_replace($fieldcontentbefore, $fieldcontentafter, $vbulletin->GPC['field1']);
}
|
how is it the code actually?