| | |
| | | | program/include/rcube_browser.php | |
| | | | | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2007-2009, Roundcube Dev. - Switzerland | |
| | | | Copyright (C) 2007-2009, The Roundcube Dev Team | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | |
| | | $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')); |
| | |
| | | $this->dom = ($this->mz || $this->safari || ($this->ie && $this->ver>=5) || ($this->opera && $this->ver>=7)); |
| | | $this->pngalpha = $this->mz || $this->safari || ($this->ie && $this->ver>=5.5) || |
| | | ($this->ie && $this->ver>=5 && $this->mac) || ($this->opera && $this->ver>=7) ? true : false; |
| | | $this->imgdata = !$this->ie; |
| | | } |
| | | } |
| | | |