From fef27be9ad5d568b32b3eee34118cc368230202f Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 8 Jul 2008 09:33:36 -0500 Subject: [PATCH] bug 2203 [2/2]: use textareas for MARC21 authority 6XX Use textareas for the 6XX fields when editing MARC21 authority records - these fields, not the 5XX, contain the lengthy notes. Note that because of the previous patch, both text inputs and textareas permit entry of up to 9999 characters. Signed-off-by: Joshua Ferraro --- authorities/authorities.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authorities/authorities.pl b/authorities/authorities.pl index 518f9464d5..cd2a2809d0 100755 --- a/authorities/authorities.pl +++ b/authorities/authorities.pl @@ -252,8 +252,8 @@ sub create_input { or ( C4::Context->preference("marcflavour") eq "UNIMARC" && $tag >= 300 and $tag < 400 && $subfield eq 'a' ) - or ( $tag >= 500 - and $tag < 600 + or ( $tag >= 600 + and $tag < 700 && C4::Context->preference("marcflavour") eq "MARC21" ) ) { -- 2.20.1