]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Update.php
Merge pull request #13480 from Raroun/fix_13457
[friendica.git] / src / Core / Update.php
index cef72f34bfda023e848f57c8878808452d307d35..2718d03d0c3318d69e33e0fd84b28e2ac325cf09 100644 (file)
@@ -132,12 +132,9 @@ class Update
                $build = DI::config()->get('system', 'build');
 
                if (empty($build)) {
-                       // legacy option - check if there's something in the Config table
-                       if (DBStructure::existsTable('config')) {
-                               $dbConfig = DBA::selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'build']);
-                               if (!empty($dbConfig)) {
-                                       $build = $dbConfig['v'];
-                               }
+                       $dbConfig = DBA::selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'build']);
+                       if (!empty($dbConfig)) {
+                               $build = $dbConfig['v'];
                        }
 
                        if (empty($build) || ($build > DB_UPDATE_VERSION)) {