From 2ec338aef30d74aec9992e469c22d75fb240859a Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Wed, 26 Aug 2015 15:28:22 -0700 Subject: [PATCH] Fixes #58. Include install.core.inc in addtion to install.inc, because that is what install.php does. --- sites/default/settings.pantheon.php | 1 + 1 file changed, 1 insertion(+) diff --git a/sites/default/settings.pantheon.php b/sites/default/settings.pantheon.php index d4ae35b08..879018271 100644 --- a/sites/default/settings.pantheon.php +++ b/sites/default/settings.pantheon.php @@ -58,6 +58,7 @@ if (isset($_ENV['PANTHEON_ENVIRONMENT'])) { * */ if (isset($_ENV['PANTHEON_ENVIRONMENT']) && (substr($_SERVER['SCRIPT_NAME'],0,17) != '/core/install.php') && (!is_dir(__DIR__ . '/files/styles'))) { + include_once __DIR__ . '/../../core/includes/install.core.inc'; include_once __DIR__ . '/../../core/includes/install.inc'; install_goto('core/install.php'); }