summaryrefslogtreecommitdiff
path: root/app/common.php
diff options
context:
space:
mode:
authorDj Padzensky <djpadz@padz.net>2016-04-13 19:03:10 -0700
committerDj Padzensky <djpadz@padz.net>2016-04-13 19:03:10 -0700
commitf4e8eb176f19b31176bd3a5f9284b54e9ea6fb17 (patch)
treef03c6444d75c518267136d708341b50833a869cd /app/common.php
parentab02a9a162e5a58bd92e7bb44636f683ce2ec730 (diff)
Fixing some pathing information, for cases where the KB source
tree is not in or under the webroot.
Diffstat (limited to 'app/common.php')
-rw-r--r--app/common.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/common.php b/app/common.php
index da624844..c9907ce1 100644
--- a/app/common.php
+++ b/app/common.php
@@ -14,12 +14,12 @@ if (getenv('DATABASE_URL')) {
define('DB_NAME', ltrim($dbopts["path"], '/'));
}
-if (file_exists('config.php')) {
- require 'config.php';
+if (file_exists(__DIR__.DIRECTORY_SEPARATOR.'config.php')) {
+ require __DIR__.DIRECTORY_SEPARATOR.'config.php';
}
-if (file_exists('data'.DIRECTORY_SEPARATOR.'config.php')) {
- require 'data'.DIRECTORY_SEPARATOR.'config.php';
+if (file_exists(__DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'config.php')) {
+ require __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'config.php';
}
require __DIR__.'/constants.php';