summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-08-31 10:05:59 +0200
committerRobin Appelman <icewind@owncloud.com>2014-08-31 10:08:22 +0200
commitd0266c0bf85e431a3b1b39cbfaced4e8df52a264 (patch)
treedfea49fa907a3b7543f8849077d75cfc29a54279 /lib/base.php
parent23137f4798cb89b188329050a85f2f3a706947c5 (diff)
downloadnextcloud-server-d0266c0bf85e431a3b1b39cbfaced4e8df52a264.tar.gz
nextcloud-server-d0266c0bf85e431a3b1b39cbfaced4e8df52a264.zip
Use public api for getting l10n
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/base.php b/lib/base.php
index 0539814589e..176f799f94d 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -193,7 +193,7 @@ class OC {
}
public static function checkConfig() {
- $l = OC_L10N::get('lib');
+ $l = \OC::$server->getL10N('lib');
if (file_exists(self::$configDir . "/config.php")
and !is_writable(self::$configDir . "/config.php")
) {
@@ -574,7 +574,7 @@ class OC {
// Check whether the sample configuration has been copied
if(OC_Config::getValue('copied_sample_config', false)) {
- $l = \OC_L10N::get('lib');
+ $l = \OC::$server->getL10N('lib');
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
OC_Template::printErrorPage(
@@ -672,7 +672,6 @@ class OC {
* Handle the request
*/
public static function handleRequest() {
- $l = \OC_L10N::get('lib');
// load all the classpaths from the enabled apps so they are available
// in the routing files of each app
OC::loadAppClassPaths();