diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-16 11:36:29 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-09 20:29:42 +0100 |
commit | 7f3051e5bf2cab6e98dc566ac290a75781c7401d (patch) | |
tree | 88eac9efe997e1ab79c10224fe4aad6f8c4a146d /lib/private/TemplateLayout.php | |
parent | 5063745cace4a7ccf219a23eb1b7717d06406707 (diff) | |
download | nextcloud-server-7f3051e5bf2cab6e98dc566ac290a75781c7401d.tar.gz nextcloud-server-7f3051e5bf2cab6e98dc566ac290a75781c7401d.zip |
Drop \OCP\Util::isIe
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/TemplateLayout.php')
-rw-r--r-- | lib/private/TemplateLayout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index f8f6536cee5..17627f81369 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -80,7 +80,7 @@ class TemplateLayout extends \OC_Template { /** @var IInitialStateService */ $this->initialState = \OC::$server->get(IInitialStateService::class); - if (Util::isIE()) { + if (\OC_Util::isIe()) { Util::addStyle('ie'); } |