I was just trying to add a new profile field and when I clicked that section of the admin CP I got a white page saying this:
Parse error: syntax error, unexpected $end in /home/public_html/admincp/profilefield.php on line 978
I downloaded the file, it's a long file. 978 is the last line so here's the last few lines... if you need me to post the whole file let me know
PHP Code:
// ###################### Start Add Checkbox #######################
if ($_POST['do'] == 'addcheckbox')
{
$vbulletin->input->clean_array_gpc('p', array(
'newfield' => TYPE_NOHTML,
'newfieldpos' => TYPE_UINT,
));
if (!empty($vbulletin->GPC['newfield']))
{
$boxdata = $db->query_first("
SELECT data
Any help appreciated!