diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-10-29 09:39:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-29 09:39:22 +0200 |
commit | e48fa1c3370632b5f8a2dcdeeabda217f50b3539 (patch) | |
tree | fdc7176cffe1f6e0a306efe0ccce149584e7f896 /core | |
parent | 035890aeb1b6e540396fd3c81841b60ea6d76f94 (diff) | |
parent | a78f6e95869272b2d5cf34bd3374a9208ae80870 (diff) | |
download | nextcloud-server-e48fa1c3370632b5f8a2dcdeeabda217f50b3539.tar.gz nextcloud-server-e48fa1c3370632b5f8a2dcdeeabda217f50b3539.zip |
Merge pull request #1948 from nextcloud/move_away_lagacy_oc_l10n
Move away from legacy OC_L10N
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/404.php | 2 | ||||
-rw-r--r-- | core/templates/exception.php | 2 | ||||
-rw-r--r-- | core/templates/login.php | 2 | ||||
-rw-r--r-- | core/templates/twofactorshowchallenge.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/404.php b/core/templates/404.php index a0d2f0160b7..79a67b3ce2c 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -1,6 +1,6 @@ <?php /** @var $_ array */ -/** @var $l OC_L10N */ +/** @var $l \OCP\IL10N */ /** @var $theme OC_Theme */ // @codeCoverageIgnoreStart if(!isset($_)) {//also provide standalone error page diff --git a/core/templates/exception.php b/core/templates/exception.php index 899ea29456c..e90a3268155 100644 --- a/core/templates/exception.php +++ b/core/templates/exception.php @@ -1,6 +1,6 @@ <?php /** @var array $_ */ - /** @var OC_L10N $l */ + /** @var \OCP\IL10N $l */ style('core', ['styles', 'header']); ?> diff --git a/core/templates/login.php b/core/templates/login.php index 36ed59e9309..46045f86b50 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,4 +1,4 @@ -<?php /** @var $l OC_L10N */ ?> +<?php /** @var $l \OCP\IL10N */ ?> <?php vendor_script('jsTimezoneDetect/jstz'); script('core', [ diff --git a/core/templates/twofactorshowchallenge.php b/core/templates/twofactorshowchallenge.php index 197de8a288e..20b92be9520 100644 --- a/core/templates/twofactorshowchallenge.php +++ b/core/templates/twofactorshowchallenge.php @@ -1,5 +1,5 @@ <?php -/** @var $l OC_L10N */ +/** @var $l \OCP\IL10N */ /** @var $_ array */ /* @var $error boolean */ $error = $_['error']; |