Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-04-24 20:41:06 +0400
committerLukas Reschke <lukas@statuscode.ch>2014-04-24 20:41:06 +0400
commitd85b64ede623558b429f5a2377381e8ec77a53f1 (patch)
treec32dfdbf8fdef29d539f72e1ec27c58107f4a545 /status.php
parent40257d9736ce0d7bad02bf4a1baa86d9b1fc8f7f (diff)
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.php2
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) {