1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +02:00

Merge branch '3.2.x'

This commit is contained in:
Marc Alexander
2018-09-16 13:15:05 +02:00
4 changed files with 4 additions and 15 deletions

View File

@@ -1241,10 +1241,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.