From dc400a0e20479dd3d9644e6431bc07bda2be4338 Mon Sep 17 00:00:00 2001 From: Luke Towers Date: Thu, 18 Jun 2020 11:27:53 -0600 Subject: [PATCH] Fix issue where the throttle feature was no longer logging IP addresses. Fixes #5128 --- modules/backend/classes/AuthManager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/backend/classes/AuthManager.php b/modules/backend/classes/AuthManager.php index 389931686..85a59ae2f 100644 --- a/modules/backend/classes/AuthManager.php +++ b/modules/backend/classes/AuthManager.php @@ -60,6 +60,7 @@ class AuthManager extends RainAuthManager protected function init() { $this->useThrottle = Config::get('auth.throttle.enabled', true); + parent::init(); } /**