From f9501bd6cef73e88b130c6640087008f8d58ef92 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 13 Feb 2011 19:44:26 +0000 Subject: Fixes #2848 pulls user settings code out of actions into functions. We should investigate putting them in a library that is only loaded on demand git-svn-id: http://code.elgg.org/elgg/trunk@8204 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/user/password.php | 49 ----------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 actions/user/password.php (limited to 'actions/user/password.php') diff --git a/actions/user/password.php b/actions/user/password.php deleted file mode 100644 index 8619372e4..000000000 --- a/actions/user/password.php +++ /dev/null @@ -1,49 +0,0 @@ -guid == elgg_get_logged_in_user_guid()) { - $credentials = array( - 'username' => $user->username, - 'password' => $current_password - ); - - if (!pam_auth_userpass($credentials)) { - register_error(elgg_echo('user:password:fail:incorrect_current_password')); - forward(REFERER); - } - } - - if (strlen($password) >= 4) { - if ($password == $password2) { - $user->salt = generate_random_cleartext_password(); // Reset the salt - $user->password = generate_user_password($user, $password); - if ($user->save()) { - system_message(elgg_echo('user:password:success')); - } else { - register_error(elgg_echo('user:password:fail')); - } - } else { - register_error(elgg_echo('user:password:fail:notsame')); - } - } else { - register_error(elgg_echo('user:password:fail:tooshort')); - } -} -- cgit v1.2.3