From ee4b7bebe801a176155fca1561868495f292f01f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 15 Jan 2021 08:35:05 +0300 Subject: [PATCH] pluginhost: load_data: check schema last --- classes/pluginhost.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/pluginhost.php b/classes/pluginhost.php index 2ce20be86..f84b07251 100755 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -356,7 +356,7 @@ class PluginHost { } private function load_data() { - if (get_schema_version() > 100 && $this->owner_uid && !$this->data_loaded) { + if ($this->owner_uid && !$this->data_loaded && get_schema_version() > 100) { $sth = $this->pdo->prepare("SELECT name, content FROM ttrss_plugin_storage WHERE owner_uid = ?"); $sth->execute([$this->owner_uid]);