An error occurred while fetching the assigned milestone of the selected merge_request.
Resolve #3036010 "Updaters"
Closes #3036010
Merge request reports
Activity
210 210 $form_state->set('flood_control_user_identifier', $identifier); 211 211 212 // Don't allow login if the limit for this user has been reached. 213 // Default is to allow 5 failed attempts every 6 hours. 214 if (!$this->userFloodControl->isAllowed('user.failed_login_user', $flood_config->get('user_limit'), $flood_config->get('user_window'), $identifier)) { 215 $form_state->set('flood_control_triggered', 'user'); 216 return; 212 // If there are zero flood records for this user, then we don't need to 213 // clear any failed login attempts after a successful login, so check 214 // for this case first before checking the actual flood limit and store 215 // the result in form state. 216 if (!$this->userFloodControl->isAllowed('user.failed_login_user', 1, $flood_config->get('user_window'), $identifier)) { 217 // Now check the actual limit for the user. Default is to allow 5 218 // failed attempts every 6 hours. This means we check the flood table 219 // twice if flood control has already been triggered by a previous 220 // login attempt, bu this should be the less common case. added 3877 commits
-
a384f7e7...b7e8bd49 - 487 commits from branch
project:9.3.x
- b7e8bd49...3b059f78 - 3380 earlier commits
- 2c6bb82a - Issue #3376369 by Spokje, quietone, smustgrave, catch: Remove use of book in...
- 225e9301 - Issue #3409388 by quietone, smustgrave: Remove usage of forum module from comments and strings
- c044cc2c - Issue #3249082 by Lendude, bbrala, quietone: Views FieldPluginBaseTest has...
- eb98cb83 - Issue #3413933 by Spokje: Remove astray $session->getPage(); from...
- 16552b02 - Issue #3328457 by xjm, dimitriskr: Replace most substr($a, $i) where $i is...
- 5b4cd266 - Rebase with 11.x
- 9072702b - Update the Drupal version
- dd61ca21 - Use ::expectDeprecation() instead of annotation
- 66407723 - Strict typing
- 856ff08b - Solving failed test cases
Toggle commit list-
a384f7e7...b7e8bd49 - 487 commits from branch
Please register or sign in to reply