aboutsummaryrefslogtreecommitdiff
path: root/actions/login.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-19 07:45:33 -0500
committercash <cash.costello@gmail.com>2011-11-28 21:44:01 -0500
commit4f1c656f51bacaa5c9e3e0550cf0cfb3422f879f (patch)
tree76a8d23750d7442477023abf37d60c8b01832cbb /actions/login.php
parent268b33d5338ec2e4da9a0a3c81a8917ce1bfda60 (diff)
downloadelgg-4f1c656f51bacaa5c9e3e0550cf0cfb3422f879f.tar.gz
elgg-4f1c656f51bacaa5c9e3e0550cf0cfb3422f879f.tar.bz2
Fixes #641 users can submit email address to reset password
Diffstat (limited to 'actions/login.php')
-rw-r--r--actions/login.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/actions/login.php b/actions/login.php
index 5934d1423..c717faadd 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -28,7 +28,6 @@ if (empty($username) || empty($password)) {
}
// check if logging in with email address
-// @todo Are usernames with @ not allowed?
if (strpos($username, '@') !== FALSE && ($users = get_user_by_email($username))) {
$username = $users[0]->username;
}