diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-06-21 13:54:15 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-06-21 14:08:16 +0100 |
commit | 929c73d4a670444eec2419f208cd138d3ea01ce3 (patch) | |
tree | 70a056f025ce731e3abfe4eae4de01ff7b7f3e78 | |
parent | a05362b17703bfa073ebf49056d0808c30a9e11b (diff) |
Fix spelling of this variable.
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/Update.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/Update.pm b/perllib/FixMyStreet/App/Controller/Report/Update.pm index 5b0dad170..e0433473d 100644 --- a/perllib/FixMyStreet/App/Controller/Report/Update.pm +++ b/perllib/FixMyStreet/App/Controller/Report/Update.pm @@ -204,7 +204,7 @@ sub process_update : Private { if ( $c->req->param('fms_extra_title') ) { my %extras = (); $extras{title} = $c->req->param('fms_extra_title'); - $extras{email_alerts_required} = $c->req->param('add_alert'); + $extras{email_alerts_requested} = $c->req->param('add_alert'); $update->extra( \%extras ); $c->stash->{fms_extra_title} = $c->req->param('fms_extra_title'); |