Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E)
Timestamp: Fri, 13 Aug 2010 08:08:11 UTC

Message: 'results_place' is null or not an object
Line: 34
Char: 9
Code: 0
URI: http://mysite.com/sites/all/modules/features/googleajaxsearch/googleajax...

Comments

jisuo’s picture

Also in IE6

mac_perlinski’s picture

Assigned: Unassigned » mac_perlinski

We will investigate it but i m affraid its the core google ajax search javascript issue not googleajaxsearch issue.

jisuo’s picture

Assigned: mac_perlinski » Unassigned

It's working when I changed

var deltas = settings.current_block;

to

var deltas = new Array();
deltas.push(settings.current_block);

ie6 & 7 got undefined on deltas.

or maybe this is the correct way:

var deltas = new Array();
if(settings.current_block.length == 1)
  deltas = [settings.current_block];
else
  deltas = settings.current_block;
mac_perlinski’s picture

Well did anyone sort it out ?