diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | apis/getconfig.inc.php | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -4,4 +4,4 @@ *.swp nbproject/ /config.php - +/client_config_additional.php diff --git a/apis/getconfig.inc.php b/apis/getconfig.inc.php index be35f5f3..5d5dbca8 100644 --- a/apis/getconfig.inc.php +++ b/apis/getconfig.inc.php @@ -46,3 +46,7 @@ if (is_array($vmstore)) { break; } } + +// For quick testing or custom extensions: Include external file that should do nothing +// more than outputting more key-value-pairs. It's expected in the webroot of slxadmin +if (file_exists('client_config_additional.php')) @include('client_config_additional.php');
\ No newline at end of file |