aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-11-11 17:03:13 +0100
committerHarald Eilertsen <haraldei@anduin.net>2024-11-11 17:05:13 +0100
commit6c1d0851d74b02bb0e7317e273788917acd8a313 (patch)
tree52decfa0a39ab40b4baf534e1b6e1146237e113d
parentd446f171c50b3d74b2f9865ccf17b535aaa38fe1 (diff)
downloadvolse-hubzilla-6c1d0851d74b02bb0e7317e273788917acd8a313.tar.gz
volse-hubzilla-6c1d0851d74b02bb0e7317e273788917acd8a313.tar.bz2
volse-hubzilla-6c1d0851d74b02bb0e7317e273788917acd8a313.zip
Fix invocation of DB_Update::run.
Thought this should have been part of the change set that turned the DB_Update routine to a static function instead of a constructor to an object that is not used.
-rw-r--r--boot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 07d19e753..25fa201d5 100644
--- a/boot.php
+++ b/boot.php
@@ -1538,7 +1538,7 @@ function check_config() {
App::set_baseurl(z_root());
- new DB_Upgrade(DB_UPDATE_VERSION);
+ DB_Upgrade::run(DB_UPDATE_VERSION);
plugins_sync();