зеркало из https://github.com/mozilla/pjs.git
Bug 84375: "CCK -" added before Company identifier (r=bobj)
"CCK-" is added to user agent string only once
This commit is contained in:
Родитель
bc75f6605c
Коммит
baceb25527
|
@ -936,10 +936,13 @@ int StartIB(CString parms, WIDGET *curWidget)
|
|||
|
||||
//Check to see if the User Agent string exists and if so then append -CCK to it ;
|
||||
CString userAgent = GetGlobal("OrganizationName");
|
||||
CString tempAgent ="CCK -";
|
||||
if (userAgent)
|
||||
tempAgent += userAgent;
|
||||
SetGlobal("OrganizationName",tempAgent);
|
||||
if (userAgent)
|
||||
{
|
||||
CString templeft = userAgent.Left(5);
|
||||
if ((templeft.CompareNoCase("CCK -")) != 0)
|
||||
userAgent = "CCK -" + userAgent;
|
||||
}
|
||||
SetGlobal("OrganizationName",userAgent);
|
||||
|
||||
// check to see if the bmp for rshell background is bigger than 302KB;
|
||||
HANDLE hFile;
|
||||
|
|
Загрузка…
Ссылка в новой задаче