fix bug 18624. r=nhotta a=chofmann. remove ; after text/html; when we do attribute comparison

This commit is contained in:
ftang%netscape.com 1999-12-22 07:44:31 +00:00
Родитель 0736dba2e9
Коммит 5516255d30
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -211,7 +211,7 @@ NS_IMETHODIMP nsMetaCharsetObserver::Notify(
contentValue=valueArray[i];
}
static nsAutoString contenttype("Content-Type");
static nsAutoString texthtml("text/html;");
static nsAutoString texthtml("text/html");
if((nsnull != httpEquivValue) &&
(nsnull != contentValue) &&
((0==nsCRT::strcasecmp(httpEquivValue,contenttype.GetUnicode())) ||