From 8e74d727f02ef0f4e932247cc1313dccad4f81ee Mon Sep 17 00:00:00 2001 From: Sam Bauers Date: Wed, 5 Feb 2014 00:59:21 +1100 Subject: [PATCH] Use base for main config key. --- min/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/min/index.php b/min/index.php index f191f26..6f00ffd 100644 --- a/min/index.php +++ b/min/index.php @@ -11,9 +11,9 @@ define('MINIFY_MIN_DIR', dirname(__FILE__)); // set config path defaults $min_configPaths = array( - 'standard' => MINIFY_MIN_DIR . '/config.php', - 'test' => MINIFY_MIN_DIR . '/config-test.php', - 'groups' => MINIFY_MIN_DIR . '/groupsConfig.php' + 'base' => MINIFY_MIN_DIR . '/config.php', + 'test' => MINIFY_MIN_DIR . '/config-test.php', + 'groups' => MINIFY_MIN_DIR . '/groupsConfig.php' ); // check for custom config paths @@ -36,7 +36,7 @@ if (!empty($min_customConfigPaths)) { } // load config -require $min_configPaths['standard']; +require $min_configPaths['base']; if (isset($_GET['test'])) { include $min_configPaths['test'];