Fixed  Trouble logging on with IE8?

rogerl

Active member
I am unable to logon to xenforo.com tonight with IE8.

Have tried the usual clearing cache etc, but every time I press the login/signup link at the top of the page I get a Javascript error from the brower:
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe/10.0.648.127; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
Timestamp: Fri, 11 Mar 2011 20:32:47 UTC


Message: Exception thrown and not caught
Line: 84
Char: 139
Code: 0
URI: http://ajax.microsoft.com/ajax/jquery/jquery-1.4.4.min.js
 
It's actually from Chrome frame, so it's not that common.

js/xenforo/xenforo.js, replace:
Code:
if (navigator.userAgent.toLowerCase().indexOf('chrome') >= 0)
with:
Code:
if ($.browser.webkit && navigator.userAgent.toLowerCase().indexOf('chrome') >= 0)
 
Top Bottom