Commit b77aba76 authored by catch's avatar catch
Browse files

Issue #3268272 by sayco: TypeError: strpos(): Argument #1 ($haystack) must be...

Issue #3268272 by sayco: TypeError: strpos(): Argument #1 ($haystack) must be of type string, int given in strpos()

(cherry picked from commit e605d0d3)
parent 6b91f32a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ function _add_ajax_listeners_to_plugin_inputs(array &$plugins_config_form): void
      }

      foreach ($plugins_config_form as $key => &$value) {
        if (is_array($value) && strpos($key, '#') === FALSE) {
        if (is_array($value) && strpos((string) $key, '#') === FALSE) {
          _add_ajax_listeners_to_plugin_inputs($value);
        }
      }