diff options
author | Eric <eric@piwigo.org> | 2009-08-18 20:51:39 +0000 |
---|---|---|
committer | Eric <eric@piwigo.org> | 2009-08-18 20:51:39 +0000 |
commit | 554fe94f7fa599ff8109df5371bbdfa6fd61eee7 (patch) | |
tree | 86d77c2dc7c28041e6e897bac6b5de93e20ad514 /admin/user_list.php | |
parent | 71774d6496e808fa6baa2b6567c89bfc5fb2ceff (diff) |
Bug 1041 fixed : manual user adding in admin's user management panel
- Double password type fields
- Add controls of the filling fields
- Alert text added in language pack - EN, FR, DE and ES are OK. IT have to be fixed.
- Subsidiary fix : Small grammatical error in FR/common.lang.php
git-svn-id: http://piwigo.org/svn/trunk@3751 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_list.php | 53 |
1 files changed, 36 insertions, 17 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index 0461c83ba..454c96d29 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -185,19 +185,38 @@ $page['direction_items'] = array( if (isset($_POST['submit_add'])) { - $page['errors'] = register_user( - $_POST['login'], $_POST['password'], $_POST['email'], false); - - if (count($page['errors']) == 0) - { - array_push( - $page['infos'], - sprintf( - l10n('user "%s" added'), - $_POST['login'] - ) - ); - } + if(empty($_POST['password'])) + { + array_push($page['errors'], l10n('Password is missing')); + } + else if(empty($_POST['password_conf'])) + { + array_push($page['errors'], l10n('Password confirmation is missing')); + } + else if(empty($_POST['email'])) + { + array_push($page['errors'], l10n('Email address is missing')); + } + else if ($_POST['password'] != $_POST['password_conf']) + { + array_push($page['errors'], l10n('Password confirmation error')); + } + else + { + $page['errors'] = register_user( + $_POST['login'], $_POST['password'], $_POST['email'], false); + + if (count($page['errors']) == 0) + { + array_push( + $page['infos'], + sprintf( + l10n('user "%s" added'), + $_POST['login'] + ) + ); + } + } } // +-----------------------------------------------------------------------+ @@ -589,7 +608,7 @@ $navbar = create_navigation_bar( $conf['users_page'] ); -$template->assign('navbar', $navbar); +$template->assign('NAVBAR', $navbar); // +-----------------------------------------------------------------------+ // | user list | @@ -658,12 +677,12 @@ foreach ($visible_user_list as $local_user) 'U_PERM' => $perm_url.$local_user['id'], 'USERNAME' => $local_user['username'] .($local_user['id'] == $conf['guest_id'] - ? '<br>['.l10n('is_the_guest').']' : '') + ? '<BR />['.l10n('is_the_guest').']' : '') .($local_user['id'] == $conf['default_user_id'] - ? '<br>['.l10n('is_the_default').']' : ''), + ? '<BR />['.l10n('is_the_default').']' : ''), 'STATUS' => l10n('user_status_'. $local_user['status']).(($local_user['adviser'] == 'true') - ? '<br>['.l10n('adviser').']' : ''), + ? '<BR />['.l10n('adviser').']' : ''), 'EMAIL' => get_email_address_as_display_text($local_user['email']), 'GROUPS' => $groups_string, 'PROPERTIES' => implode( ', ', $properties), |