Fix format of log/private/ocs.php

Fixes https://github.com/owncloud/core/pull/14314#discussion_r37305256
This commit is contained in:
Morris Jobke 2015-08-19 14:21:10 +02:00
parent a9bb6be019
commit 8fbb0c7b49

View file

@ -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);
}
}