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
Comment #1
hutch commentedThe
url()function encodes '&' into '&This is common practise, causes no problems, browsers and servers know how to interpret this.
Comment #2
hutch commented