diff options
Diffstat (limited to 'perllib/FixMyStreet/SendReport.pm')
-rw-r--r-- | perllib/FixMyStreet/SendReport.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/SendReport.pm b/perllib/FixMyStreet/SendReport.pm index 915fe4a20..66a31ffcc 100644 --- a/perllib/FixMyStreet/SendReport.pm +++ b/perllib/FixMyStreet/SendReport.pm @@ -36,9 +36,9 @@ sub reset { sub add_council { my $self = shift; my $council = shift; - my $name = shift; + my $info = shift; - $self->councils->{ $council } = $name; + $self->councils->{ $council } = $info; } |