Fehlermeldung im Error Log bei MODX Revo 2.2.x und 2.3.x mit FormIt 2.2.0
PHP warning: in_array() expects parameter 2 to be array, null givenoderin_array() [function.in-array]: Wrong datatype for second argumentLösung:
Snippet FormitIsChecked & FormItIsSelected die Zeile
if (in_array($options,$input)) {
durch diese ersetzen:
if (!empty($input) && is_array($input) && in_array($options,$input)) {
Quelle:
Bug #9775 und
github.com/splittingred/FormItDanke jgulledge19!