summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-08-19 19:09:32 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-08-19 19:09:32 +0200
commit313cb092f9eed4448916c53d82ea5ee01def8956 (patch)
tree63a4b156495bec714bd43c589124f2039c5fa0fb /lib/private
parent6900dbdaffaf33e63514df298501393879df0254 (diff)
parent8fbb0c7b49606a8e3e0b4a50c258e854f0d7e525 (diff)
downloadnextcloud-server-313cb092f9eed4448916c53d82ea5ee01def8956.tar.gz
nextcloud-server-313cb092f9eed4448916c53d82ea5ee01def8956.zip
Merge pull request #18427 from owncloud/fix-format-ocs
Fix format of log/private/ocs.php
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/ocs.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/ocs.php b/lib/private/ocs.php
index f03f0c6a1a6..c5133bf9ee8 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);
+ }
}