summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 540ab4d4a..6dc494454 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -709,7 +709,10 @@
global $pluginhost;
$pluginhost->load($plugins, $pluginhost::KIND_USER, $owner_uid);
- $pluginhost->load_data();
+
+ if (get_schema_version($link) > 100) {
+ $pluginhost->load_data();
+ }
}
}