You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Undefined array key "ep_disable_markup_serendipity_event_imageselectorplus:34ba0343cf0d7f01a68354358af1be85" in /plugins/serendipity_event_imageselectorplus/serendipity_event_imageselectorplus.php on line 594.
Fix seems to be easy, there is just an isset missing. I changed the line from
The new check would only be false when $eventData['properties']['ep_disable_markup_' . $this->instance] is not set at all. But it would evaluate to true when $eventData['properties']['ep_disable_markup_' . $this->instance] is set, but set to false.
With current git-master I get an error
Fix seems to be easy, there is just an isset missing. I changed the line from
to
The text was updated successfully, but these errors were encountered: