summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--apis/getconfig.inc.php4
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index f1c80c99..24a104ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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