From: Michael Andreen Date: Sun, 20 Jul 2008 13:35:23 +0000 (+0200) Subject: Bugfix, not sure how that value disappeared X-Git-Url: https://ruin.nu/git/?a=commitdiff_plain;h=16fbe66ea19aa3882114267808963281cf7d37ad;p=ndwebbie.git Bugfix, not sure how that value disappeared --- diff --git a/lib/NDWeb/Controller/Users.pm b/lib/NDWeb/Controller/Users.pm index 781fc73..a46c230 100644 --- a/lib/NDWeb/Controller/Users.pm +++ b/lib/NDWeb/Controller/Users.pm @@ -182,7 +182,7 @@ sub postmail : Local { ); if (sendmail %mail) { - $c->flash(ok => ); + $c->flash(ok => \@emails); }else { $c->flash(error => $Mail::Sendmail::error); $c->flash(subject => $c->req->param('subject')); diff --git a/root/src/users/mail.tt2 b/root/src/users/mail.tt2 index 8613d8a..0aa1a5d 100644 --- a/root/src/users/mail.tt2 +++ b/root/src/users/mail.tt2 @@ -2,7 +2,7 @@ [% IF ok %]

Mail sent successfully

-

[% ok.join(', ') %]

+

[% ok.join(', ') | html %]

[% END %]
Mail