diff options
author | Edmund von der Burg <evdb@ecclestoad.co.uk> | 2011-02-08 17:07:58 -0300 |
---|---|---|
committer | Edmund von der Burg <evdb@ecclestoad.co.uk> | 2011-02-08 17:07:58 -0300 |
commit | 8de6aeb76a9c1bc2c49b56c78bbc1833b1dba4de (patch) | |
tree | 9371e4310ca551e9c530dd412a7a15f9a90525cd | |
parent | 2c18b9614a1c7505a246cbfa5b768784845b635b (diff) |
remove debug warnings
-rwxr-xr-x | web/index.cgi | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/web/index.cgi b/web/index.cgi index c1a034df7..8b6793d72 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -824,10 +824,6 @@ sub display_location { $input_h{$key} = ent( $input{$key} ); } - use Data::Dumper; - local $Data::Dumper::Sortkeys = 1; - warn Dumper( \%input ); - my $latitude = $input{lat}; my $longitude = $input{lon}; @@ -866,8 +862,6 @@ sub display_location { if ( ref($error) eq 'ARRAY' ); return front_page( $q, $error ) if $error; } - - warn "lat: $latitude, lon: $longitude"; # Check this location is okay to be displayed for the cobrand my ($success, $error_msg) = Cobrand::council_check($cobrand, { lat => $latitude, lon => $longitude }, $q, 'display_location'); |