/inc/classes BxDolPrivacy.php
find
$aValues = array_merge($aValues, $aDynamicGroups);
bellow add
array_unshift ($aValues, _t('_Please_Select_'));
find
return array(
'type' => 'select',
'name' => $sName,
'caption' => (!empty($sTitle) ? $sTitle : _t(!empty($sCaption) ? $sCaption : '_' . $sName)),
'value' => $sValue,
'values' => $aValues,
'checker' => array(
'func' => 'avail',
'error' => _t('_ps_ferr_incorrect_select')
),
'db' => array(
'pass' => 'Int'
)
);
}
make changes
return array(
'type' => 'select',
'name' => $sName,
'caption' => (!empty($sTitle) ? $sTitle : _t(!empty($sCaption) ? $sCaption : '_' . $sName)),
/*'value' => $sValue,*/
'values' => $aValues,
'required' => true,
'checker' => array(
'func' => 'avail',
'error' => _t('_ps_ferr_incorrect_select')
),
'db' => array(
'pass' => 'Int'
)
);
}