diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-03-17 20:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 20:18:11 +0100 |
commit | f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83 (patch) | |
tree | 756f967efe04ef018fdc097aaf13cec7600e792f /apps/files_trashbin | |
parent | f1fefd91dff68382e0675e42acbd02f4bb415eb8 (diff) | |
parent | 7f3051e5bf2cab6e98dc566ac290a75781c7401d (diff) | |
download | nextcloud-server-f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83.tar.gz nextcloud-server-f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83.zip |
Merge pull request #25676 from nextcloud/drop/utl-is-ie
Drop \OCP\Util::isIe
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/list.php b/apps/files_trashbin/list.php index 239e24f7a62..2dbc03719ec 100644 --- a/apps/files_trashbin/list.php +++ b/apps/files_trashbin/list.php @@ -30,7 +30,7 @@ $config = \OC::$server->getConfig(); $userSession = \OC::$server->getUserSession(); $showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false); -$isIE = \OCP\Util::isIE(); +$isIE = OC_Util::isIe(); $tmpl = new OCP\Template('files_trashbin', 'index', ''); |