diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-02-02 19:20:56 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-02-02 19:20:56 +0000 |
commit | 166852c6a884d40308598f562792285637286ee0 (patch) | |
tree | c5f182531563620d6be8739d2df87b8727d23700 | |
parent | 770fdbda619b54a3b6dee1c3f94a9cbad502d961 (diff) |
Don't have a command line argument as causes issue with cron-wrapper.
-rwxr-xr-x | bin/send-alerts | 3 | ||||
-rwxr-xr-x | bin/send-questionnaires | 3 | ||||
-rwxr-xr-x | bin/send-reports | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/bin/send-alerts b/bin/send-alerts index 4464b16e9..00c5426bc 100755 --- a/bin/send-alerts +++ b/bin/send-alerts @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # send-alerts: # Email alerts for FixMyStreet @@ -7,6 +7,7 @@ # Email: matthew@mysociety.org. WWW: http://www.mysociety.org use strict; +use warnings; require 5.8.0; use CGI; # XXX diff --git a/bin/send-questionnaires b/bin/send-questionnaires index 4910abc02..7ed3c87c2 100755 --- a/bin/send-questionnaires +++ b/bin/send-questionnaires @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # send-questionnaires: # Send out creator questionnaires @@ -7,6 +7,7 @@ # Email: matthew@mysociety.org. WWW: http://www.mysociety.org use strict; +use warnings; require 5.8.0; use CGI; # XXX Awkward kludge diff --git a/bin/send-reports b/bin/send-reports index d92c10467..c8c1e9cf2 100755 --- a/bin/send-reports +++ b/bin/send-reports @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # send-reports: # Send new problem reports to councils @@ -7,6 +7,7 @@ # Email: matthew@mysociety.org. WWW: http://www.mysociety.org use strict; +use warnings; require 5.8.0; use Digest::MD5; |