Issue #2781953 by vpshah86, fgm: Update.php still refers to $update_free_access

8.3.x
Alex Pott 2016-08-11 14:16:15 +01:00
parent 74d2937c1d
commit 27b2c4ff1b
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ class UpdateKernel extends DrupalKernel {
$db_update_access = $this->getContainer()->get('access_check.db_update');
if (!Settings::get('update_free_access', FALSE) && !$db_update_access->access($account)->isAllowed()) {
throw new AccessDeniedHttpException('In order to run update.php you need to either be logged in as admin or have set $update_free_access in your settings.php.');
throw new AccessDeniedHttpException('In order to run update.php you need to either be logged in as admin or have set $settings[\'update_free_access\'] in your settings.php.');
}
}