From 59a3cacf48a8b0eda1f4f9933140cdeaebd69b60 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Wed, 30 Oct 2024 09:34:49 +0000 Subject: [PATCH] Bug 36221: (QA follow-up): Fix year value Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo --- Koha/ILL/Backend/shared-includes/form_input_helpers.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/ILL/Backend/shared-includes/form_input_helpers.inc b/Koha/ILL/Backend/shared-includes/form_input_helpers.inc index 8928f791e6..e19c8349c3 100644 --- a/Koha/ILL/Backend/shared-includes/form_input_helpers.inc +++ b/Koha/ILL/Backend/shared-includes/form_input_helpers.inc @@ -39,6 +39,6 @@ [% PROCESS ill_text_input_field id = 'title' label = t('Title') value = whole.value.other.title %] [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %] [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %] - [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.issue %] + [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %] [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %] [% END %] \ No newline at end of file -- 2.47.0