summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-27 06:37:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-27 06:37:17 +0000
commitd38ffa744ba1304c514af556be8c86c20e0db560 (patch)
tree979e6adce353aad40edcf81e61b1075f7550ba10
parent84ac2a5491795016d2944c23c70c35a45125182b (diff)
- Fix IE9 detection (#1488008)
git-svn-id: https://svn.roundcube.net/trunk@4971 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_browser.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_browser.php b/roundcubemail/program/include/rcube_browser.php
index 108dd5507..c89c3897f 100644
--- a/roundcubemail/program/include/rcube_browser.php
+++ b/roundcubemail/program/include/rcube_browser.php
@@ -39,9 +39,9 @@ class rcube_browser
$this->unix = strstr($HTTP_USER_AGENT, 'unix');
$this->opera = strstr($HTTP_USER_AGENT, 'opera');
- $this->ns4 = strstr($HTTP_USER_AGENT, 'mozilla/4') && !strstr($HTTP_USER_AGENT, 'msie');
+ $this->ns4 = strstr($HTTP_USER_AGENT, 'mozilla/4') && !stristr($HTTP_USER_AGENT, 'msie');
$this->ns = ($this->ns4 || strstr($HTTP_USER_AGENT, 'netscape'));
- $this->ie = !$this->opera && strstr($HTTP_USER_AGENT, 'compatible; msie');
+ $this->ie = !$this->opera && stristr($HTTP_USER_AGENT, 'compatible; msie');
$this->mz = !$this->ie && strstr($HTTP_USER_AGENT, 'mozilla/5');
$this->chrome = strstr($HTTP_USER_AGENT, 'chrome');
$this->khtml = strstr($HTTP_USER_AGENT, 'khtml');