diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-11-11 17:03:13 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-11-11 17:05:13 +0100 |
commit | 6c1d0851d74b02bb0e7317e273788917acd8a313 (patch) | |
tree | 52decfa0a39ab40b4baf534e1b6e1146237e113d /boot.php | |
parent | d446f171c50b3d74b2f9865ccf17b535aaa38fe1 (diff) | |
download | volse-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.
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |