@@ -, +, @@ details notice --- installer/data/mysql/atomicupdate/bug_27812.pl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_27812.pl --- a/installer/data/mysql/atomicupdate/bug_27812.pl +++ a/installer/data/mysql/atomicupdate/bug_27812.pl @@ -0,0 +1,10 @@ +use Modern::Perl; + +return { + bug_number => "27812", + description => "Remove the ability to transmit a patron's plain text password over email", + up => sub { + my ($args) = @_; + 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."; + }, +}; --