Fixed bad sequence of the tests.

master
Loic d'Anterroches 2009-05-07 15:28:52 +02:00
parent 63cdede854
commit 1c51437569
1 changed files with 3 additions and 3 deletions

View File

@ -179,13 +179,13 @@ class IDF_Form_Admin_UserUpdate extends Pluf_Form
function clean_first_name()
{
$first_name = trim($this->cleaned_data['first_name']);
if ($first_name == '---') {
throw new Pluf_Form_Invalid(__('--- is not a valid first name.'));
}
if ($first_name == mb_strtoupper($first_name)) {
$first_name = mb_convert_case(mb_strtolower($first_name),
MB_CASE_TITLE, 'UTF-8');
}
if ($first_name == '---') {
throw new Pluf_Form_Invalid(__('--- is not a valid first name.'));
}
return $first_name;
}