aboutsummaryrefslogtreecommitdiffstats
path: root/web/reports.cgi
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2011-01-14 12:53:34 +0000
committerMatthew Somerville <matthew@mysociety.org>2011-01-14 12:53:34 +0000
commit6dae847b330b0958442fc89c323a9b3e9a5be240 (patch)
treee948682978bdba3372984f42c2b8a95b0c1b5159 /web/reports.cgi
parentaf94672c0cef154b1e0068aa1c9dd0dd58c32fb4 (diff)
parent7f834105f3ec090b7e8827460fee4847a65a03c7 (diff)
Merge branch 'master' into reportemptyhomes
Diffstat (limited to 'web/reports.cgi')
-rwxr-xr-xweb/reports.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/reports.cgi b/web/reports.cgi
index 4faee63f9..fe4213be4 100755
--- a/web/reports.cgi
+++ b/web/reports.cgi
@@ -12,7 +12,7 @@
use strict;
use Standard;
use URI::Escape;
-use mySociety::Alert;
+use FixMyStreet::Alert;
use mySociety::MaPit;
use mySociety::Web qw(ent NewURL);
use mySociety::VotingArea;
@@ -117,7 +117,7 @@ sub main {
}
print $q->header( -type => 'application/xml; charset=utf-8' );
my $xsl = Cobrand::feed_xsl($cobrand);
- my $out = mySociety::Alert::generate_rss($type, $xsl, "/$url", \@params, \%title_params, $cobrand, $q);
+ my $out = FixMyStreet::Alert::generate_rss($type, $xsl, "/$url", \@params, \%title_params, $cobrand, $q);
$out =~ s/matthew.fixmystreet/emptyhomes.matthew.fixmystreet/g if $q->{site} eq 'emptyhomes';
print $out;
return;