W szablonie member_register w podgląd profili masz kod odpowiedzialny za to
<script type="text/javascript">
<!--
regValidator = new FormValidator('registration_form');
regValidator.register('username', 'notEmpty', {failure_message:'{$lang->js_validator_no_username}'});
regValidator.register('email', 'regexp', {match_field:'email2', regexp:'^([a-zA-Z0-9_\\.\\+\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$', failure_message:'{$lang->js_validator_invalid_email}'});
regValidator.register('email2', 'matches', {match_field:'email', status_field:'email_status', failure_message:'{$lang->js_validator_email_match}'});
{$validator_extra}
regValidator.register('username', 'ajax', {url:'xmlhttp.php?action=username_availability', loading_message:'{$lang->js_validator_checking_username}'}); // needs to be last
// -->
</script>
tak trochę dla jasności
<script type="text/javascript">
<!--
regValidator = new FormValidator('registration_form');
regValidator.register('username', 'notEmpty', {failure_message:'Musisz podać login'});
regValidator.register('email', 'regexp', {match_field:'email2', regexp:'^([a-zA-Z0-9_\\.\\+\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$', failure_message:'Musisz podać prawidłowy adres e-mail'});
regValidator.register('email2', 'matches', {match_field:'email', status_field:'email_status', failure_message:'Podane adresy e-mail nie zgadzają się'});
regValidator.register('referrer', 'ajax', {url:'xmlhttp.php?action=username_exists', loading_message:'Sprawdzam czy istnieje taki użytkownik...'});
regValidator.register('fid1', 'notEmpty', {failure_message:'Nie możesz pozostawić tego pola pustego'});
regValidator.register('imagestring', 'ajax', {url:'xmlhttp.php?action=validate_captcha', extra_body: 'imagehash', loading_message:'Sprawdzam czy poprawnie przepisano kod...', failure_message:'Musisz tutaj przepisać tekst z obrazka obok'});
regValidator.register('password', 'length', {match_field:'password2', min: 6, failure_message:'Hasło musi zawierać przynajmniej 6 znaków'});
regValidator.register('password2', 'matches', {match_field:'password', status_field:'password_status', failure_message:'Podane hasła nie zgadzają się'});
regValidator.register('username', 'length', {min: 3, max: 14, failure_message:'Login musi zawierać od 3 do 14 znaków'});
regValidator.register('username', 'ajax', {url:'xmlhttp.php?action=username_availability', loading_message:'Sprawdzam czy login jest dostępny...'}); // needs to be last
// -->
</script>