From 478e8ea127b7421b94e2917fb683e482b09b94b7 Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Thu, 20 Aug 2015 14:58:45 -0700 Subject: [PATCH] Fix comparison error in settings.php. --- sites/default/settings.pantheon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/default/settings.pantheon.php b/sites/default/settings.pantheon.php index 1e04f018c..eb7d433c3 100644 --- a/sites/default/settings.pantheon.php +++ b/sites/default/settings.pantheon.php @@ -13,7 +13,7 @@ * at https://www.drupal.org/node/2431247 * */ -if (substr($_SERVER['SCRIPT_NAME'],0,17) != '/core/install.php') { +if (substr($_SERVER['SCRIPT_NAME'],0,17) == '/core/install.php') { $config_directories = array( CONFIG_ACTIVE_DIRECTORY => 'sites/default/files', CONFIG_STAGING_DIRECTORY => 'sites/default/files',