From a464e20091e0662bed82bfe308af69c8710614aa Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 7 May 2024 13:07:53 +0100 Subject: [PATCH] Bug 36612: (QA follow-up) Add 'source' to public_read_list This patch adds the required 'source' field to the public_read_list for tickets. Signed-off-by: Katrin Fischer --- Koha/Ticket.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Ticket.pm b/Koha/Ticket.pm index 9beed14349..55734cd583 100644 --- a/Koha/Ticket.pm +++ b/Koha/Ticket.pm @@ -191,7 +191,7 @@ sub public_read_list { return [ 'ticket_id', 'title', 'body', 'reporter_id', 'reported_date', 'resolved_date', - 'biblio_id' + 'biblio_id', 'source' ]; } -- 2.39.5