Closed (works as designed)
Project:
Get Locations
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
23 May 2012 at 20:29 UTC
Updated:
27 Oct 2012 at 19:47 UTC
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