Merge pull request #6228 from MrPetovan/bug/5911-undefined-constant-DB_UPDATE_VERSION
Add DB connection status check in Update::check
This commit is contained in:
commit
be0d70f9ef
|
@ -18,6 +18,10 @@ class Update
|
||||||
*/
|
*/
|
||||||
public static function check($via_worker)
|
public static function check($via_worker)
|
||||||
{
|
{
|
||||||
|
if (!DBA::connected()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$build = Config::get('system', 'build');
|
$build = Config::get('system', 'build');
|
||||||
|
|
||||||
if (empty($build)) {
|
if (empty($build)) {
|
||||||
|
|
Loading…
Reference in a new issue