From e341c2a717b6e2b329f011a1dd03cbce036524bb Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Sun, 9 Sep 2012 08:55:12 -0400 Subject: [PATCH] Bug 8744: Thesaurus in authorities should not lock fields Although fields in the authority editor should support thesaurus control, they should never be locked, as authority records commonly refer to other records that may not be in use locally (and therefore might not be in the authority file). Test plan: 1) Make sure a 5xx field in one of your authority frameworks is thesaurus-controlled. 2) Note that you cannot edit the field directly. 3) Apply patch. 4) Note that you can now edit the field irectly. Signed-off-by: wajasu Signed-off-by: Paul Poulain --- authorities/authorities.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/authorities/authorities.pl b/authorities/authorities.pl index f6263d96e6..b63f7e411e 100755 --- a/authorities/authorities.pl +++ b/authorities/authorities.pl @@ -194,9 +194,8 @@ sub create_input { id=\"".$subfield_data{id}."\" name=\"".$subfield_data{id}."\" value=\"$value\" - class=\"input_marceditor readonly\" - tabindex=\"1\" - readonly=\"readonly\" \/> + class=\"input_marceditor\" + tabindex=\"1\" \/> {$tag}->{$subfield}->{authtypecode}."'); return false;\" tabindex=\"1\" title=\"Tag Editor\">... "; -- 2.39.5