diff options
Diffstat (limited to 'app/app.php')
-rwxr-xr-x | app/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/app.php b/app/app.php index eb6d6cf..269d99c 100755 --- a/app/app.php +++ b/app/app.php @@ -10,8 +10,8 @@ if ($debug) { require_once __DIR__.'/../vendor/autoload.php'; -$savedConfig = dirname(__FILE__).'/../custom/config.yml'; -$moon_version = file_get_contents(dirname(__FILE__).'/../VERSION'); +$savedConfig = __DIR__.'/../custom/config.yml'; +$moon_version = file_get_contents(__DIR__.'/../VERSION'); if (is_file($savedConfig)){ |