diff options
author | matthew <matthew> | 2007-05-16 10:55:45 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-05-16 10:55:45 +0000 |
commit | 00fee19b9dff2b7be957434cf9276bda19a7f7cf (patch) | |
tree | e884b9a1bc118f2668a730abaa7c55ec11929c3a /bin/send-reports | |
parent | df83d5d24e9f10eae831f3e0fda3cb2e1163ce61 (diff) |
Show category and whether map was used; tabs.
Diffstat (limited to 'bin/send-reports')
-rwxr-xr-x | bin/send-reports | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/send-reports b/bin/send-reports index d3089a03c..96d3550d4 100755 --- a/bin/send-reports +++ b/bin/send-reports @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: send-reports,v 1.38 2007-05-15 13:43:20 matthew Exp $ +# $Id: send-reports,v 1.39 2007-05-16 10:55:45 matthew Exp $ use strict; require 5.8.0; @@ -63,7 +63,7 @@ foreach my $row (@$unsent) { my ($council_email, $confirmed, $note) = dbh()->selectrow_array( "SELECT email,confirmed,note FROM contacts WHERE deleted='f' and area_id=? AND category=?", {}, $council, $row->{category}); - $council_email = essex_contact($row->{easting}, $row->{northing}) if $council == 2225; + $council_email = essex_contact($row->{easting}, $row->{northing}) if $council == 2225; unless ($confirmed) { $all_confirmed = 0; $note = 'Council ' . $row->{council} . ' deleted' |