Bug 27812: (QA follow-up) Fix atomicupdate
[koha.git] / installer / data / mysql / atomicupdate / bug_27812.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "27812",
5     description => "Remove the ability to transmit a patron's plain text password over email",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         say $out "The notice template ACCTDETAILS no longer has access to the patron's plain text password. Please update the language of your ACCTDETAILS as needed.";
10     },
11 };