Merge pull request #18427 from owncloud/fix-format-ocs

Fix format of log/private/ocs.php
This commit is contained in:
Thomas Müller 2015-08-19 19:09:32 +02:00
commit 313cb092f9
1 changed files with 2 additions and 1 deletions

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