@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl | 2 +- installer/data/mysql/updatedatabase.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl +++ a/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl @@ -27,7 +27,7 @@ if( CheckVersion( $DBversion ) ) { }); $dbh->do(q{ UPDATE letter SET - content = REPLACE(content, "The following item [% biblio.title %] has correctly been renewed and is now due [% checkout.date_due %]", "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %] + content = REPLACE(content, "The following item [% biblio.title %] has correctly been renewed and is now due [% checkout.date_due | $KohaDates as_due_date => 1 %]", "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %] ") WHERE code = 'AUTO_RENEWALS'; }); --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -14456,7 +14456,7 @@ if( CheckVersion( $DBversion ) ) { Your total unpaid fines are too high. [% END %] [% ELSE %] - The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %] + The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %] [% END %]", 'email'); }); --