diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-26 16:51:29 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-26 16:51:29 +0200 |
commit | 15d05e55cbbdebe60701b7319e7cad9f63e9d413 (patch) | |
tree | b2249e019a60ba72cf9dceb3b27edc8db3b71fd9 | |
parent | 7ac7546b71bb530d2ebdd961ddad030861b1cc0c (diff) | |
parent | ff6564af571fa5c5b21f708d20cef6f02205bc00 (diff) | |
download | nextcloud-server-15d05e55cbbdebe60701b7319e7cad9f63e9d413.tar.gz nextcloud-server-15d05e55cbbdebe60701b7319e7cad9f63e9d413.zip |
Merge pull request #8343 from owncloud/fix-status
Use echo since print_unescaped is not defined
-rw-r--r-- | status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/status.php b/status.php index 4e423560aa7..a42c1581b83 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) { |