Fixed Make Use of responseFlooding

TickTackk

Well-known member
Under action Lost inside LostPassword Controller, it doesn't make use of responseFlooding. So this could
PHP:
return $this->responseError(new XenForo_Phrase('must_wait_x_seconds_before_performing_this_action', array('count' => $wait)));
become
PHP:
return $this->responseFlooding($wait);
 
Last edited:
Top Bottom