[CONTROLLER][AdminPanel] Further ensure form validity

This commit is contained in:
Hugo Sales 2021-08-07 18:22:25 +00:00
parent 38a331220f
commit afbcb179b2
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 9 additions and 3 deletions

View File

@ -72,6 +72,12 @@ class AdminPanel extends Controller
$data = $form->getData();
if ($form->isValid() && array_key_exists('setting', $data)) {
[$section, $setting] = explode(':', $data['setting']);
if (!isset($defaults[$section]) && !isset($defaults[$section][$setting])) {
// @codeCoverageIgnoreStart
throw new ClientException(_m('The supplied field doesn\'t exist'));
// @codeCoverageIgnoreEnd
}
foreach ([
'int' => FILTER_VALIDATE_INT,
'bool' => FILTER_VALIDATE_BOOL,