From 5a356a0af00e8f70b0254c3af4e035f5feca9e27 Mon Sep 17 00:00:00 2001 From: Xavier Perseguers Date: Mon, 19 Sep 2011 22:47:00 +0200 Subject: [PATCH] [BUGFIX] t3lib_userAuthGroup::checkLogFailures() gives PHP notice Due to improper method signature in the parent class of t3lib_userAuthGroup, a PHP notice is generated when calling method checkLogFailures(). Change-Id: Ic41cb88889ee18f2508ae5b2e96858e8bf16c349 Fixes: #30055 Releases: 4.6 Reviewed-on: http://review.typo3.org/5082 Reviewed-by: Xavier Perseguers Tested-by: Xavier Perseguers --- t3lib/class.t3lib_userauth.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/t3lib/class.t3lib_userauth.php b/t3lib/class.t3lib_userauth.php index 423308e47101..7028aeaf3eb6 100644 --- a/t3lib/class.t3lib_userauth.php +++ b/t3lib/class.t3lib_userauth.php @@ -1299,10 +1299,13 @@ abstract class t3lib_userAuth { /** * DUMMY: Check login failures (in some extension classes) * - * @return void + * @param string $email Email address + * @param integer $secondsBack Number of sections back in time to check. This is a kind of limit for how many failures an hour for instance + * @param integer $maxFailures Max allowed failures before a warning mail is sent + * @return void * @ignore */ - function checkLogFailures() { + function checkLogFailures($email, $secondsBack, $maxFailures) { } /** -- 2.20.1