diff --git a/classes/pluginhost.php b/classes/pluginhost.php index 4224893c24163fd1624bd18c98686bb903d2ec5e..4eada78b297b3b7c983314101b702b07c7bc254f 100644 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -360,7 +360,9 @@ class PluginHost { function get_all($sender) { $idx = get_class($sender); - return $this->storage[$idx]; + $data = $this->storage[$idx]; + + return $data ? $data : []; } function clear_data($sender) {