Find the line of the error at the library file, in my case was some array that should not be null $attributes[$t] I've change it.
if ($attributes['t'] == 'array') { //from this
if (isset($attributes['t']) && $attributes['t'] == 'array') { //to this
the error dissapeared.
Top comments (0)