diff options
Diffstat (limited to 'lib/public/Util.php')
-rw-r--r-- | lib/public/Util.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index 27b703ea2d8..9892f4a1ecb 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -558,4 +558,14 @@ class Util { } return self::$needUpgradeCache; } + + /** + * is this Internet explorer ? + * + * @return boolean + * @since 14.0.0 + */ + public static function isIe() { + return \OC_Util::isIe(); + } } |