summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-08-19 14:21:10 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-08-19 14:21:10 +0200
commit8fbb0c7b49606a8e3e0b4a50c258e854f0d7e525 (patch)
treeedd605ad71bd9c3865c52ea6194fb653ab8cc867 /lib
parenta9bb6be019a88e29ebb0b227fd7c0f36e2a7383b (diff)
downloadnextcloud-server-8fbb0c7b49606a8e3e0b4a50c258e854f0d7e525.tar.gz
nextcloud-server-8fbb0c7b49606a8e3e0b4a50c258e854f0d7e525.zip
Fix format of log/private/ocs.php
Fixes https://github.com/owncloud/core/pull/14314#discussion_r37305256
Diffstat (limited to 'lib')
-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);
+ }
}