diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-07-22 17:05:11 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-07-22 17:05:11 +0100 |
commit | 03388de7ea81464024abb23e8579e4d9dcfd5555 (patch) | |
tree | bbf29f0848ea9c258f993c9842a9f61cef789c6c /perllib/FixMyStreet/App.pm | |
parent | 77d0e3934e1a77e941473d02f9b55685a9d57d83 (diff) |
If a form input has a name identical to an ID, OpenLayers in IE6/7 gets all confused.
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r-- | perllib/FixMyStreet/App.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index 29d224268..68bfc728b 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -180,7 +180,7 @@ sub setup_request { Memcached::set_namespace( FixMyStreet->config('BCI_DB_NAME') . ":" ); - my $map = $host =~ /^osm\./ ? 'OSM' : $c->req->param('map'); + my $map = $host =~ /^osm\./ ? 'OSM' : $c->req->param('map_override'); #if ($c->sessionid) { # $map = $c->session->{map}; # $map = undef unless $map eq 'OSM'; |