We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd1a1fe commit 3ef588fCopy full SHA for 3ef588f
engine/core.php
@@ -56,12 +56,12 @@ private function loadConfigs()
56
57
if (isset($_SERVER['DEBUG']) && $_SERVER['DEBUG'] == 'true')
58
{
59
- self::$config['core']['general']['path'] = self::$config['core']['path']['local'];
+ self::$config['core']['general']['path'] = self::$config['core']['path']['debug'];
60
self::$config['core']['general']['devel'] = true;
61
}
62
else
63
64
- self::$config['core']['general']['path'] = self::$config['core']['path']['web'];
+ self::$config['core']['general']['path'] = self::$config['core']['path']['release'];
65
self::$config['core']['general']['devel'] = false;
66
67
0 commit comments