From 19b49728b2c8232da913acd95c89ffbbc4246ad5 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 7 Sep 2022 13:17:53 +0000 Subject: [PATCH] Bug 31170: (QA follow-up) Fix capitalization in database update As this has not been released yet, we can also fix the database update to not introduce the wrong capitalization in the first place. --- installer/data/mysql/db_revs/220600013.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/db_revs/220600013.pl b/installer/data/mysql/db_revs/220600013.pl index 764a8ca121..082fbbbfe0 100755 --- a/installer/data/mysql/db_revs/220600013.pl +++ b/installer/data/mysql/db_revs/220600013.pl @@ -9,7 +9,7 @@ return { $dbh->do(q{ INSERT IGNORE INTO letter (module,code,branchcode,name,is_html,title,content,message_transport_type,lang) - VALUES ('circulation','OVERDUE_FINE_DESC','','Overdue Item Fine Description',0,'Overdue Item Fine Description','[% item.biblio.title %] [% checkout.date_due | $KohaDates %]','print','default') + VALUES ('circulation','OVERDUE_FINE_DESC','','Overdue item fine description',0,'Overdue item fine description','[% item.biblio.title %] [% checkout.date_due | $KohaDates %]','print','default') }); }, }; -- 2.30.2