Hi,

I am going through code of my front page. I noticed that it contains a link like this:

http://maps.googleapis.com/maps/api/js?key=aKey&sensor=false&language=cs

It should be like this:

http://maps.googleapis.com/maps/api/js?key=aKey&sensor=false&language=cs

This issus is caused by this line number 772 of getlocation.module

  $gmaplink = url($scheme . '://' . $gmapdomain, array('query' => $query));

Comments

hutch’s picture

Category: bug » support

The url() function encodes '&' into '&
This is common practise, causes no problems, browsers and servers know how to interpret this.

hutch’s picture

Status: Active » Closed (works as designed)