summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
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));
}
}