1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02:00

[ticket/15733] Remove unused code related to deprecated flood control

PHPBB3-15733
This commit is contained in:
MikelAlejoBR
2018-07-28 14:29:37 +02:00
parent 04899d1efd
commit b2277e7bf6
3 changed files with 0 additions and 11 deletions

View File

@@ -1176,10 +1176,6 @@ class phpbb_functional_test_case extends phpbb_test_case
}
}
// Bypass time restriction that said that if the lastclick time (i.e. time when the form was opened)
// is not at least 2 seconds before submission, cancel the form
$form_data['lastclick'] = 0;
// I use a request because the form submission method does not allow you to send data that is not
// contained in one of the actual form fields that the browser sees (i.e. it ignores "hidden" inputs)
// Instead, I send it as a request with the submit button "post" set to true.