From d85b64ede623558b429f5a2377381e8ec77a53f1 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 24 Apr 2014 18:41:06 +0200 Subject: Use echo since print_unescaped is not defined Fixes https://github.com/owncloud/core/issues/8342 --- status.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3