From 8fbb0c7b49606a8e3e0b4a50c258e854f0d7e525 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 19 Aug 2015 14:21:10 +0200 Subject: [PATCH] Fix format of log/private/ocs.php Fixes https://github.com/owncloud/core/pull/14314#discussion_r37305256 --- lib/private/ocs.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/ocs.php b/lib/private/ocs.php index f03f0c6a1a..c5133bf9ee 100644 --- a/lib/private/ocs.php +++ b/lib/private/ocs.php @@ -41,6 +41,7 @@ class OC_OCS { $format = \OC::$server->getRequest()->getParam('format', 'xml'); $txt='Invalid query, please check the syntax. API specifications are here:' .' http://www.freedesktop.org/wiki/Specifications/open-collaboration-services. DEBUG OUTPUT:'."\n"; - OC_API::respond(new OC_OCS_Result(null, API::RESPOND_UNKNOWN_ERROR, $txt), $format); } + OC_API::respond(new OC_OCS_Result(null, API::RESPOND_UNKNOWN_ERROR, $txt), $format); + } }