mirror of
https://github.com/django/django.git
synced 2025-10-27 23:56:08 +00:00
Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer than PASSWORD_RESET_TIMEOUT_DAYS.
This commit is contained in:
committed by
Tim Graham
parent
8c45b5b903
commit
95993a89ce
@@ -42,7 +42,7 @@ class PasswordResetTokenGenerator:
|
||||
return False
|
||||
|
||||
# Check the timestamp is within limit
|
||||
if (self._num_days(self._today()) - ts) > settings.PASSWORD_RESET_TIMEOUT_DAYS:
|
||||
if (self._num_days(self._today()) - ts) >= settings.PASSWORD_RESET_TIMEOUT_DAYS:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user