Skip to content

Commit

Permalink
missed || undef from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
struan committed Oct 15, 2012
1 parent 304790a commit 7c617cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perllib/FixMyStreet/App/Controller/Admin.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ sub update_contacts : Private {
$conf->api_key( $params{api_key} ); $conf->api_key( $params{api_key} );
$conf->send_method( $params{send_method} ); $conf->send_method( $params{send_method} );
$conf->send_comments( $params{send_comments} || 0 ); $conf->send_comments( $params{send_comments} || 0 );
$conf->comment_user_id( $params{comment_user_id} ); $conf->comment_user_id( $params{comment_user_id} || undef );
$conf->suppress_alerts( $params{suppress_alerts} || 0); $conf->suppress_alerts( $params{suppress_alerts} || 0);
$conf->username( $params{username} ); $conf->username( $params{username} );
$conf->password( $params{password} ); $conf->password( $params{password} );
Expand Down

0 comments on commit 7c617cb

Please sign in to comment.