From ce8ef0720e3881735e7ff1587880d53206775b4d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 10 May 2020 17:06:17 +0000 Subject: [PATCH] Bug 24378: (follow-up) Format due date as due date Changes the due date formatting as was already done for the new sample files on bug 23787. Signed-off-by: Jonathan Druart --- installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl | 2 +- installer/data/mysql/updatedatabase.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl b/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl index a9580353d8..6dd5c1d672 100644 --- a/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl +++ b/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'; }); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index d31355c910..5333deb5fd 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/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'); }); -- 2.20.1