The new version 3.1.10 added check form in acp_search.
But checking not correct:
if (!check_form_key($form_key) && in_array($action, array('delete', 'create')))
must be
if (!check_form_key($form_key) && !in_array($action, array('delete', 'create')))
- is duplicated by
-
PHPBB-14830 FORM_INVALID error on ACP search and CPF settings
- Closed