mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #8343 from owncloud/fix-status
Use echo since print_unescaped is not defined
This commit is contained in:
commit
15d05e55cb
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ try {
|
|||
if (OC::$CLI) {
|
||||
print_r($values);
|
||||
} else {
|
||||
print_unescaped(json_encode($values));
|
||||
echo json_encode($values);
|
||||
}
|
||||
|
||||
} catch (Exception $ex) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue