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
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-02-16 13:36:29 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2021-03-09 22:29:42 +0300
commit7f3051e5bf2cab6e98dc566ac290a75781c7401d (patch)
tree88eac9efe997e1ab79c10224fe4aad6f8c4a146d /apps/files_sharing/list.php
parent5063745cace4a7ccf219a23eb1b7717d06406707 (diff)
Drop \OCP\Util::isIe
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files_sharing/list.php')
-rw-r--r--apps/files_sharing/list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/list.php b/apps/files_sharing/list.php
index 3a9bd028cbc..ab40444022d 100644
--- a/apps/files_sharing/list.php
+++ b/apps/files_sharing/list.php
@@ -36,7 +36,7 @@ $legacyEventDispatcher = \OC::$server->getEventDispatcher();
$eventDispatcher = \OC::$server->get(OCP\EventDispatcher\IEventDispatcher::class);
$showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false);
-$isIE = \OCP\Util::isIE();
+$isIE = OC_Util::isIe();
$tmpl = new OCP\Template('files_sharing', 'list', '');