diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-01-14 12:53:34 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-01-14 12:53:34 +0000 |
commit | 6dae847b330b0958442fc89c323a9b3e9a5be240 (patch) | |
tree | e948682978bdba3372984f42c2b8a95b0c1b5159 /bin/send-alerts | |
parent | af94672c0cef154b1e0068aa1c9dd0dd58c32fb4 (diff) | |
parent | 7f834105f3ec090b7e8827460fee4847a65a03c7 (diff) |
Merge branch 'master' into reportemptyhomes
Diffstat (limited to 'bin/send-alerts')
-rwxr-xr-x | bin/send-alerts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/send-alerts b/bin/send-alerts index 57eeb16ae..c52af4059 100755 --- a/bin/send-alerts +++ b/bin/send-alerts @@ -21,7 +21,7 @@ use CronFns; use mySociety::Config; use mySociety::DBHandle qw(dbh); -use mySociety::Alert; +use FixMyStreet::Alert; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); @@ -37,5 +37,5 @@ BEGIN { my $site = CronFns::site(mySociety::Config::get('BASE_URL')); CronFns::language($site); my $testing_email = mySociety::Config::get('TESTING_EMAIL'); -mySociety::Alert::email_alerts($testing_email); +FixMyStreet::Alert::email_alerts($testing_email); |