diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-28 21:46:28 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-28 21:46:28 +0200 |
commit | 740659a04c28f8b2bfd9265d459dd3bca202300f (patch) | |
tree | d800c3896184bdfc00333f4067c4d567b8ab6d4b /apps/files/templates | |
parent | f2cae3cee127220a5fde2726af8074837ee81ed1 (diff) | |
download | nextcloud-server-740659a04c28f8b2bfd9265d459dd3bca202300f.tar.gz nextcloud-server-740659a04c28f8b2bfd9265d459dd3bca202300f.zip |
Move away from OC_L10N
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 2 | ||||
-rw-r--r-- | apps/files/templates/recentlist.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 92345d3063e..17958d330b7 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,4 @@ -<?php /** @var $l OC_L10N */ ?> +<?php /** @var $l \OCP\IL10N */ ?> <?php $_['appNavigation']->printPage(); ?> <div id="app-content"> <?php foreach ($_['appContents'] as $content) { ?> diff --git a/apps/files/templates/recentlist.php b/apps/files/templates/recentlist.php index 1667eb4cc8d..6c271a07f5f 100644 --- a/apps/files/templates/recentlist.php +++ b/apps/files/templates/recentlist.php @@ -1,4 +1,4 @@ -<?php /** @var $l OC_L10N */ ?> +<?php /** @var $l \OCP\IL10N */ ?> <div id='notification'></div> <div id="emptycontent" class="hidden"></div> |