Skip to content

Commit

Permalink
- Fixed IE/FF detection (#1487838)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Mar 21, 2011
1 parent ddaeb33 commit a8d7c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/include/rcube_browser.php
Expand Up @@ -42,7 +42,7 @@ function __construct()
$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'));
Expand Down

0 comments on commit a8d7c65

Please sign in to comment.