Hi I couldn't reproduce this error.
I think that this issue is cause by some rules applied on the fields that are hidden in the login panel.
Try to save record to reproduce your error, then go to login panel tab and change login to [create new user]. You should see an error marked over field.
If you don't then please debug this issue following these instructions
1. Edit file modules/Utils/RecordBrowser/RecordBrowser_0.php
2. Go to line 1404 and find such code
foreach ($this->fields_in_tabs as $label=>$fields) {
$highlight = false;
foreach ($fields as $f) {
$err = $form->getElementError($f);
if ($err) {
$highlight = true;
break;
}
}
if ($highlight)
$tb->tab_icon($label, Base_ThemeCommon::get_template_file('Utils_RecordBrowser','notify_error.png'));
}
3. You can debug with debugger if you can - just set breakpoint at $err line. In other case just put var_dump here to get such code
foreach ($this->fields_in_tabs as $label=>$fields) {
$highlight = false;
foreach ($fields as $f) {
$err = $form->getElementError($f);
if ($err) {
var_dump($err);
$highlight = true;
break;
}
}
if ($highlight)
$tb->tab_icon($label, Base_ThemeCommon::get_template_file('Utils_RecordBrowser','notify_error.png'));
}
Now you should see the error.
Regards,
Adam