From 13fd234c9ca90018a23925670c2c9afb20017266 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 10 Jun 2003 21:23:53 +0000 Subject: [PATCH] fixed Content-Type lookup git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlpars.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html/htmlpars.cpp b/src/html/htmlpars.cpp index ac2fc44880..efd6d9349e 100644 --- a/src/html/htmlpars.cpp +++ b/src/html/htmlpars.cpp @@ -872,7 +872,7 @@ bool wxMetaTagHandler::HandleTag(const wxHtmlTag& tag) } if (tag.HasParam(_T("HTTP-EQUIV")) && - tag.GetParam(_T("HTTP-EQUIV")) == _T("Content-Type") && + tag.GetParam(_T("HTTP-EQUIV")).IsSameAs(_T("Content-Type"), false) && tag.HasParam(_T("CONTENT"))) { wxString content = tag.GetParam(_T("CONTENT")); -- 2.45.2