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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-21 14:28:23 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-07-21 17:09:13 +0300
commitda0bdd1391d86046662e3e3cee046a48ffb58d22 (patch)
treedb9dc892d6bf39c20eba2760e924424cacb42312 /lib/public/Util.php
parent58debbe42c16ee4ab7d36ffc91a53ae953c09021 (diff)
Design structure fixes
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/public/Util.php')
-rw-r--r--lib/public/Util.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php
index 27b703ea2d8..df7211d6a80 100644
--- a/lib/public/Util.php
+++ b/lib/public/Util.php
@@ -558,4 +558,13 @@ class Util {
}
return self::$needUpgradeCache;
}
+
+ /**
+ * is this Internet explorer ?
+ *
+ * @return boolean
+ */
+ public static function isIe() {
+ return \OC_Util::isIe();
+ }
}