]> git.mxchange.org Git - friendica.git/commitdiff
Corrected wrong handling of the return value
authorMichael <heluecht@pirati.ca>
Fri, 22 Dec 2017 14:51:50 +0000 (14:51 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 22 Dec 2017 14:51:50 +0000 (14:51 +0000)
boot.php

index 0fb8c01b9eb460e4814db392408c045eadd75942..245fdc9035c109a524bae6365c178a97f3d6b107 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -673,7 +673,8 @@ function update_db(App $a)
        $build = Config::get('system', 'build');
 
        if (empty($build)) {
-               $build = Config::set('system', 'build', DB_UPDATE_VERSION);
+               Config::set('system', 'build', DB_UPDATE_VERSION);
+               $build = DB_UPDATE_VERSION;
        }
 
        if ($build != DB_UPDATE_VERSION) {