alecpl
2011-03-21 a8d7c659f1b343d2f0d6c954fcd3e0688e512736
- Fixed IE/FF detection (#1487838)


1 files modified
2 ■■■ changed files
program/include/rcube_browser.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_browser.php
@@ -42,7 +42,7 @@
        $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'));