diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-27 13:29:39 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-27 14:56:07 -0700 |
commit | db1f6e3e35485df041631e6d86baa17572ab7d4d (patch) | |
tree | 36e72e7f5b07e9178a54680672f1cabc25e51a5f | |
parent | 88149a5afaa48711ccecda67036ec9a6755b9050 (diff) |
Don't ask for csrf when we're resetting passwords. They're not gonna have one. Duh!
Fixes #642.
-rw-r--r-- | modules/user/controllers/password.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/user/controllers/password.php b/modules/user/controllers/password.php index 2af1b879..7c432701 100644 --- a/modules/user/controllers/password.php +++ b/modules/user/controllers/password.php @@ -29,8 +29,6 @@ class Password_Controller extends Controller { } public function do_reset() { - access::verify_csrf(); - if (request::method() == "post") { $this->_change_password(); } else { |