summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 12:10:35 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 12:10:35 +0400
commit857efe49e653787f5408fc014ae71efec68494d5 (patch)
tree39b29ba94e64854762157d4fb645d3fb1f3d138c /include
parenta94379f118d1058c66b1fbb7ba34a27a9999ced9 (diff)
add schema checking to feed updating and update script
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 0a20f5d8e..9ea2662fc 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -60,6 +60,12 @@
function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
// Process all other feeds using last_updated and interval parameters
+ $schema_version = get_schema_version($link);
+
+ if ($schema_version != SCHEMA_VERSION) {
+ die("Schema version is wrong, please upgrade the database.\n");
+ }
+
define('PREFS_NO_CACHE', true);
// Test if the user has loggued in recently. If not, it does not update its feeds.