diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-24 18:41:06 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-24 18:41:06 +0200 |
commit | d85b64ede623558b429f5a2377381e8ec77a53f1 (patch) | |
tree | c32dfdbf8fdef29d539f72e1ec27c58107f4a545 /status.php | |
parent | 40257d9736ce0d7bad02bf4a1baa86d9b1fc8f7f (diff) | |
download | nextcloud-server-d85b64ede623558b429f5a2377381e8ec77a53f1.tar.gz nextcloud-server-d85b64ede623558b429f5a2377381e8ec77a53f1.zip |
Use echo since print_unescaped is not defined
Fixes https://github.com/owncloud/core/issues/8342
Diffstat (limited to 'status.php')
-rw-r--r-- | status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/status.php b/status.php index 4e423560aa7..861eaed9cd2 100644 --- a/status.php +++ b/status.php @@ -34,7 +34,7 @@ try { if (OC::$CLI) { print_r($values); } else { - print_unescaped(json_encode($values)); + echo(json_encode($values)); } } catch (Exception $ex) { |