summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-04-26 20:04:24 +0300
committerAndrew Dolgov <[email protected]>2016-04-26 20:04:24 +0300
commit977cea1438dafcdc98756b070a1383e5887d64c1 (patch)
tree4a4e5d75d56c7c36c72a70d811d9db1926de7a52 /update.php
parent9e84bab449f9ed55e02e60378b0af1521026f3b8 (diff)
actually check for failures properly in the dbupdater
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 54401f99a..f17436185 100755
--- a/update.php
+++ b/update.php
@@ -325,7 +325,7 @@
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
_debug("performing update up to version $i...");
- $result = $updater->performUpdateTo($i);
+ $result = $updater->performUpdateTo($i, false);
_debug($result ? "OK!" : "FAILED!");