Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ocs
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-24 19:42:26 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-09 12:38:38 +0300
commit2367797c17aafe0f0570477ff653894f3033e97c (patch)
treea838d249abd8d65bfb985309e6d080fb65667210 /ocs
parent33b11682f9826346f48b7587161dc5a43944a063 (diff)
Respect http header 'Accept-Language' on ocs and remote.php calls
Diffstat (limited to 'ocs')
-rw-r--r--ocs/v1.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ocs/v1.php b/ocs/v1.php
index b0f3e5e2b90..86631f39686 100644
--- a/ocs/v1.php
+++ b/ocs/v1.php
@@ -39,8 +39,8 @@ try {
// load all apps to get all api routes properly setup
OC_App::loadApps();
- // api calls always will return English
- \OC_L10N::forceLanguage('en');
+ // force language as given in the http request
+ \OC_L10N::setLanguageFromRequest();
OC::$server->getRouter()->match('/ocs'.\OC::$server->getRequest()->getRawPathInfo());
} catch (ResourceNotFoundException $e) {