diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-18 19:50:01 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-18 19:50:01 +0100 |
commit | 3373e4ae1026b4ec729172074a7ec540410ebee4 (patch) | |
tree | d145541624022fce331a40fe2e6f46d61239a5a6 /program | |
parent | 8328d0643eaadd30fb969f51cf51a96f622a459d (diff) |
Fix browser version detection and failing tests
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/Roundcube/rcube_browser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_browser.php b/program/lib/Roundcube/rcube_browser.php index abef5b5f5..e53e31200 100644 --- a/program/lib/Roundcube/rcube_browser.php +++ b/program/lib/Roundcube/rcube_browser.php @@ -41,7 +41,7 @@ class rcube_browser $this->safari = !$this->chrome && (strpos($HTTP_USER_AGENT, 'safari') !== false || strpos($HTTP_USER_AGENT, 'applewebkit') !== false); $this->mz = !$this->ie && !$this->safari && !$this->chrome && !$this->ns && strpos($HTTP_USER_AGENT, 'mozilla') !== false; - if (preg_match('/(mozilla|chrome|msie|opera|safari|applewebkit|khtml)(\s*|\/)([0-9.]+)/', $HTTP_USER_AGENT, $regs)) { + if (preg_match('/(chrome|msie|opera|version|khtml)(\s*|\/)([0-9.]+)/', $HTTP_USER_AGENT, $regs)) { $this->ver = (float) $regs[3]; } else if (preg_match('/rv:([0-9.]+)/', $HTTP_USER_AGENT, $regs)) { |