Skip to content
Snippets Groups Projects
Commit b22fdb21 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2115829 by Xano: Fixed...

Issue #2115829 by Xano: Fixed ConfigurableEntityReferenceItem::instanceSettingsFormValidate() does not typehint its arguments.
parent 840e20ae
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -171,7 +171,7 @@ public function instanceSettingsForm(array $form, array &$form_state) {
* @param array $form_state
* The form state of the (entire) configuration form.
*/
public static function instanceSettingsFormValidate($form, &$form_state) {
public static function instanceSettingsFormValidate(array $form, array &$form_state) {
if (isset($form_state['values']['instance'])) {
unset($form_state['values']['instance']['settings']['handler_submit']);
$form_state['instance']->settings = $form_state['values']['instance']['settings'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment