summaryrefslogtreecommitdiffstatshomepage
path: root/index.php
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2014-03-24 10:55:51 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2014-03-24 10:55:51 -0700
commitb9ef6be3c152c467bf01430e5bdc5fb3d4d83a74 (patch)
tree25d27a9a7b879d3606a871eb201cf7cc28c8f3e7 /index.php
parentfab42693f81b93b4228162021ce916ef5feb13c7 (diff)
downloaddrupal-b9ef6be3c152c467bf01430e5bdc5fb3d4d83a74.tar.gz
drupal-b9ef6be3c152c467bf01430e5bdc5fb3d4d83a74.zip
Issue #2219009 follow-up by pwolanin: Replace missed call to settings().
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 2181fb3d8d0..4916a6c1cee 100644
--- a/index.php
+++ b/index.php
@@ -16,7 +16,7 @@ try {
}
catch (Exception $e) {
$message = 'If you have just changed code (for example deployed a new module or moved an existing one) read <a href="http://drupal.org/documentation/rebuild">http://drupal.org/documentation/rebuild</a>';
- if (settings()->get('rebuild_access', FALSE)) {
+ if (\Drupal\Component\Utility\Settings::get('rebuild_access', FALSE)) {
$rebuild_path = $GLOBALS['base_url'] . '/rebuild.php';
$message .= " or run the <a href=\"$rebuild_path\">rebuild script</a>";
}