From dfc79b341c4ae80fe3bae0c52cadee7c28a108fd Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 18 Oct 2011 06:09:32 -0400
Subject: [PATCH] Find charset in HTML meta tags if not specified in content-type header (#1488125)
---
program/include/rcube_browser.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/program/include/rcube_browser.php b/program/include/rcube_browser.php
index 108dd55..c89c389 100644
--- a/program/include/rcube_browser.php
+++ b/program/include/rcube_browser.php
@@ -39,9 +39,9 @@
$this->unix = strstr($HTTP_USER_AGENT, 'unix');
$this->opera = strstr($HTTP_USER_AGENT, 'opera');
- $this->ns4 = strstr($HTTP_USER_AGENT, 'mozilla/4') && !strstr($HTTP_USER_AGENT, 'msie');
+ $this->ns4 = strstr($HTTP_USER_AGENT, 'mozilla/4') && !stristr($HTTP_USER_AGENT, 'msie');
$this->ns = ($this->ns4 || strstr($HTTP_USER_AGENT, 'netscape'));
- $this->ie = !$this->opera && strstr($HTTP_USER_AGENT, 'compatible; msie');
+ $this->ie = !$this->opera && stristr($HTTP_USER_AGENT, 'compatible; msie');
$this->mz = !$this->ie && strstr($HTTP_USER_AGENT, 'mozilla/5');
$this->chrome = strstr($HTTP_USER_AGENT, 'chrome');
$this->khtml = strstr($HTTP_USER_AGENT, 'khtml');
--
Gitblit v1.9.1