diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-03-17 18:39:24 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-03-17 19:04:25 +0000 |
commit | 36f50c1e21ef26f0021036568254e70863bdb0cc (patch) | |
tree | b7cf3213cbe2e55989a2a336945477319046844a /perllib/FixMyStreet/App.pm | |
parent | c5715d14de77d3bbcd144592175c4814eb19bbc8 (diff) |
Change default email indentation to none.
This is very old, no-one seems to want/need it any more,
and more than one reuser does not want it. Fixes #715.
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r-- | perllib/FixMyStreet/App.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index 2e2bf3890..1664f0f30 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -336,7 +336,7 @@ sub send_email { { _template_ => $email->body, # will get line wrapped _parameters_ => {}, - _line_indent => $c->cobrand->email_indent, + _line_indent => '', $email->header_pairs } ) }; @@ -366,6 +366,7 @@ sub send_email_cron { # } #); + $params->{_line_indent} = ''; my $email = mySociety::Locale::in_gb_locale { mySociety::Email::construct_email($params) }; if ( FixMyStreet->test_mode ) { |