1
0
mirror of https://github.com/django/django.git synced 2025-10-27 07:36:08 +00:00

Reverted "Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer than PASSWORD_RESET_TIMEOUT_DAYS."

This reverts commit 95993a89ce.
This commit is contained in:
Tim Graham
2017-09-25 08:51:02 -04:00
parent c180abe6f1
commit 67a6ba391b
3 changed files with 3 additions and 11 deletions

View File

@@ -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