From 55e1c03fa61e68735732419185438632cc365cdd Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 10 Aug 2023 13:26:54 +0000 Subject: [PATCH] Bug 33759: Fix typo 'Thankyou' in sample notices This fixes the typo 'Thankyou' in some of the sample notices. To test: * With the sample data * Create and run a report: SELECT code,content FROM letter where content LIKE "%Thankyou%"; * Verify 3 notices contain 'Thankyou' * Apply patch * Drop your database * Run the web installer * Run report again, you should no longer get any results --- installer/data/mysql/en/mandatory/sample_notices.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/data/mysql/en/mandatory/sample_notices.yml b/installer/data/mysql/en/mandatory/sample_notices.yml index 3b0892188b..28c482bf9a 100644 --- a/installer/data/mysql/en/mandatory/sample_notices.yml +++ b/installer/data/mysql/en/mandatory/sample_notices.yml @@ -55,12 +55,12 @@ tables: - "[%- PROCESS 'html_helpers.inc' -%]" - "Dear [%- INCLUDE 'patron-title.inc' patron => ticket.reporter -%],
" - "
" - - "Thankyou for your report concerning [%- INCLUDE 'biblio-title.inc' biblio=ticket.biblio link = 0 -%].
" + - "Thank you for your report concerning [%- INCLUDE 'biblio-title.inc' biblio=ticket.biblio link = 0 -%].
" - "
" - "You reported:
" - "[%- ticket.body -%]
" - "
" - - "Thankyou" + - "Thank you" - module: catalogue code: TICKET_RESOLVE @@ -79,7 +79,7 @@ tables: - "The following comment was left:
" - "[%- ticket_update.message -%]
" - "
" - - "Thankyou" + - "Thank you" - module: catalogue code: TICKET_UPDATE @@ -98,7 +98,7 @@ tables: - "The following comment was left:
" - "[%- ticket_update.message -%]
" - "
" - - "Thankyou" + - "Thank you" - module: catalogue code: TICKET_NOTIFY -- 2.30.2