summaryrefslogtreecommitdiffstats
path: root/config/appconfig.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/appconfig.php')
-rw-r--r--config/appconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/appconfig.php b/config/appconfig.php
index b1195f8bb..f153e8d22 100644
--- a/config/appconfig.php
+++ b/config/appconfig.php
@@ -47,7 +47,7 @@ class AppConfig {
private function parseConfig($string) {
// no need to worry about XXE since local file
$xml = simplexml_load_string($string, 'SimpleXMLElement');
- return json_decode(json_encode((array)$xml), TRUE);
+ return json_decode(json_encode((array)$xml), true);
}