aboutsummaryrefslogtreecommitdiff
path: root/actions/user/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/user/password.php')
-rw-r--r--actions/user/password.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/actions/user/password.php b/actions/user/password.php
deleted file mode 100644
index 6e3ff9447..000000000
--- a/actions/user/password.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Action for changing a user's password
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- */
-
-global $CONFIG;
-
-gatekeeper();
-
-$password = get_input('password');
-$password2 = get_input('password2');
-$user_id = get_input('guid');
-$user = "";
-
-if (!$user_id) {
- $user = $_SESSION['user'];
-} else {
- $user = get_entity($user_id);
-}
-
-if (($user) && ($password!="")) {
- 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'));
- }
-}