aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework
diff options
context:
space:
mode:
authorMikelAlejoBR <mikelalejobr@outlook.com>2018-07-28 14:29:37 +0200
committerMikelAlejoBR <mikelalejobr@outlook.com>2018-07-28 14:29:37 +0200
commitb2277e7bf688168acfa3097730f556b7218858ac (patch)
treea837408084a554af5a227991402541d76d267537 /tests/test_framework
parent04899d1efd261493111e309600531d363b73bc46 (diff)
downloadforums-b2277e7bf688168acfa3097730f556b7218858ac.tar
forums-b2277e7bf688168acfa3097730f556b7218858ac.tar.gz
forums-b2277e7bf688168acfa3097730f556b7218858ac.tar.bz2
forums-b2277e7bf688168acfa3097730f556b7218858ac.tar.xz
forums-b2277e7bf688168acfa3097730f556b7218858ac.zip
[ticket/15733] Remove unused code related to deprecated flood control
PHPBB3-15733
Diffstat (limited to 'tests/test_framework')
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index e1daa4558a..12a296a4bf 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -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.