summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorChristoph Schulthess2017-01-24 16:57:57 +0100
committerChristoph Schulthess2017-01-24 16:57:57 +0100
commit923105672ac4102bad6daeb1a086713b1e8231c4 (patch)
treef7c491a14fa03d1646bc1384bf61076360b0ae13 /inc
parentdeleted unused files (diff)
downloadslx-admin-923105672ac4102bad6daeb1a086713b1e8231c4.tar.gz
slx-admin-923105672ac4102bad6daeb1a086713b1e8231c4.tar.xz
slx-admin-923105672ac4102bad6daeb1a086713b1e8231c4.zip
debug config module
Diffstat (limited to 'inc')
-rw-r--r--inc/property.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php
index 0eb700e3..dc11d88c 100644
--- a/inc/property.inc.php
+++ b/inc/property.inc.php
@@ -193,11 +193,11 @@ class Property
public static function getRemoteDebugConfig()
{
- return self::get('remote-debug-config');
+ return json_decode(self::get('remote-debug-config'), true);
}
public static function setRemoteDebugConfig($value)
{
- return self::set('remote-debug-config', $value);
+ return self::set('remote-debug-config', json_encode($value));
}
}