diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-11-11 19:20:30 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-11-11 19:20:30 +0100 |
commit | cea923a1e82a7e8ce696418c3a5a0f7703871101 (patch) | |
tree | ee2b38865867119a682cb1f97a40522e2bf0f03d /app/class/config.php | |
parent | 45903fe3960b65d63f70188640630c895dbbe222 (diff) | |
download | wcms-cea923a1e82a7e8ce696418c3a5a0f7703871101.tar.gz wcms-cea923a1e82a7e8ce696418c3a5a0f7703871101.zip |
correct-basepath
Diffstat (limited to 'app/class/config.php')
-rw-r--r-- | app/class/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/config.php b/app/class/config.php index 495c008..83982de 100644 --- a/app/class/config.php +++ b/app/class/config.php @@ -63,7 +63,7 @@ abstract class Config public static function checkbasepath() { - $path = $_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . self::basepath() . Model::CONFIG_FILE; + $path = $_SERVER['DOCUMENT_ROOT'] . DIRECTORY_SEPARATOR . self::basepath() . DIRECTORY_SEPARATOR . Model::CONFIG_FILE; return (file_exists($path)); } |