diff options
author | matthew <matthew> | 2009-07-13 17:56:36 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-07-13 17:56:36 +0000 |
commit | 850e141f7d75ca306b425ec04ae11f6a56b235db (patch) | |
tree | f73ecfb1dde799c9060b4a2069b0babd80ec6f43 /bin/send-alerts | |
parent | ba7d5f2b3dffca77491cde95b867c02b150a302d (diff) |
Some typos, add CGI inclusion because of '_' issue.
Diffstat (limited to 'bin/send-alerts')
-rwxr-xr-x | bin/send-alerts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/send-alerts b/bin/send-alerts index f282efaaf..0b14eadaf 100755 --- a/bin/send-alerts +++ b/bin/send-alerts @@ -6,11 +6,13 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: send-alerts,v 1.3 2009-07-10 15:17:28 matthew Exp $ +# $Id: send-alerts,v 1.4 2009-07-13 17:56:36 matthew Exp $ use strict; require 5.8.0; +use CGI; # XXX + # Horrible boilerplate to set up appropriate library paths. use FindBin; use lib "$FindBin::Bin/../perllib"; @@ -32,7 +34,7 @@ BEGIN { ); } -my $site = CronFns::site(mySociey::Config::get('BASE_URL')); +my $site = CronFns::site(mySociety::Config::get('BASE_URL')); CronFns::language($site); mySociety::Alert::email_alerts(); |