summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-03-21 11:19:13 +0000
committeralecpl <alec@alec.pl>2011-03-21 11:19:13 +0000
commita8d7c659f1b343d2f0d6c954fcd3e0688e512736 (patch)
treea3f5b94856fe491c2176ccf62cee4d5e85a9d662
parentddaeb3352ca1a510625cb9cbcf526e05608ec9ff (diff)
- Fixed IE/FF detection (#1487838)
-rw-r--r--program/include/rcube_browser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_browser.php b/program/include/rcube_browser.php
index c5f1b8a7a..108dd5507 100644
--- a/program/include/rcube_browser.php
+++ b/program/include/rcube_browser.php
@@ -42,7 +42,7 @@ class rcube_browser
$this->ns4 = strstr($HTTP_USER_AGENT, 'mozilla/4') && !strstr($HTTP_USER_AGENT, 'msie');
$this->ns = ($this->ns4 || strstr($HTTP_USER_AGENT, 'netscape'));
$this->ie = !$this->opera && strstr($HTTP_USER_AGENT, 'compatible; msie');
- $this->mz = strstr($HTTP_USER_AGENT, 'mozilla/5');
+ $this->mz = !$this->ie && strstr($HTTP_USER_AGENT, 'mozilla/5');
$this->chrome = strstr($HTTP_USER_AGENT, 'chrome');
$this->khtml = strstr($HTTP_USER_AGENT, 'khtml');
$this->safari = !$this->chrome && ($this->khtml || strstr($HTTP_USER_AGENT, 'safari'));