diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-03-21 11:56:47 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-03-21 11:56:47 +0000 |
commit | 76253c9ff527ad14f932b9fec5dca795b1ba08d8 (patch) | |
tree | 15ebe263b618765536b4a8f125ce2810c22cbf38 /web | |
parent | f66ed062235f9df55ba46a17274f9007a63c08c1 (diff) |
WiP: determine location from pc
Diffstat (limited to 'web')
-rwxr-xr-x | web/index.cgi | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/web/index.cgi b/web/index.cgi index 178706b20..d9e781682 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -938,16 +938,16 @@ sub display_location { my $url_skip = NewURL( $q, - -url => '/reports/new', - -retain => 1, - pc => undef, - x => undef, - 'y' => undef, - latitude => $short_lat, - longitude => $short_lon, - 'submit_map' => 1, - skipped => 1 + -url => '/reports/new', + -retain => 1, + x => undef, + y => undef, + latitude => $short_lat, + longitude => $short_lon, + submit_map => 1, + skipped => 1 ); + my $pc_h = ent($q->param('pc') || ''); my $rss_url; |