diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-03-09 13:28:31 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-03-09 15:42:40 +0000 |
commit | 468e81212c9a15f25a3ae6bf9c94505f02cdc7e7 (patch) | |
tree | 6150ee30feb65cd6697add9a868773187cf63afd /perllib/FixMyStreet/App/Controller/Report/New.pm | |
parent | 630ad091519dff8aa9371502005fbb788d349632 (diff) |
A number of warnfixes in tests.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Report/New.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/New.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/New.pm b/perllib/FixMyStreet/App/Controller/Report/New.pm index faa02f9fe..1a300da21 100644 --- a/perllib/FixMyStreet/App/Controller/Report/New.pm +++ b/perllib/FixMyStreet/App/Controller/Report/New.pm @@ -1247,7 +1247,7 @@ sub check_for_errors : Private { if ( $c->cobrand->allow_anonymous_reports ) { my $anon_details = $c->cobrand->anonymous_account; $report->user->email(undef) if $report->user->email eq $anon_details->{email}; - $report->name(undef) if $report->name eq $anon_details->{name}; + $report->name(undef) if $report->name && $report->name eq $anon_details->{name}; } return; |