Hello Wired1,
I am upgrading my board from 3.6.4 to 3.6.8 and I see that in functions_user.php is hook at the place you edit the file:
PHP Code:
{
switch ($profilefield['form'])
{
case 1:
$customfields['login'] .= $tempcustom;
break;
case 2:
$customfields['messaging'] .= $tempcustom;
break;
case 3:
$customfields['threadview'] .= $tempcustom;
break;
case 4:
$customfields['datetime'] .= $tempcustom;
break;
case 5:
$customfields['other'] .= $tempcustom;
break;
default:
($hook = vBulletinHook::fetch_hook('profile_fetch_profilefields_loc')) ? eval($hook) : false;
}
}
}
Is it possible to take advantage of this hook and get rid of manual file edits with each upgrade?
Thanks for your add-on!!!