From 554fe94f7fa599ff8109df5371bbdfa6fd61eee7 Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 18 Aug 2009 20:51:39 +0000 Subject: 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 --- admin/user_list.php | 53 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 36 insertions(+), 17 deletions(-) (limited to 'admin/user_list.php') 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'] - ? '
['.l10n('is_the_guest').']' : '') + ? '
['.l10n('is_the_guest').']' : '') .($local_user['id'] == $conf['default_user_id'] - ? '
['.l10n('is_the_default').']' : ''), + ? '
['.l10n('is_the_default').']' : ''), 'STATUS' => l10n('user_status_'. $local_user['status']).(($local_user['adviser'] == 'true') - ? '
['.l10n('adviser').']' : ''), + ? '
['.l10n('adviser').']' : ''), 'EMAIL' => get_email_address_as_display_text($local_user['email']), 'GROUPS' => $groups_string, 'PROPERTIES' => implode( ', ', $properties), -- cgit v1.2.3