From fb376c9bbef65bc3794371896470a7e4bf761383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick?= Date: Tue, 18 Mar 2014 16:11:44 -0400 Subject: [PATCH] [SIGNED-OFF] Remove spaces in empty indicators when linking an authority to a biblio record. http://bugs.koha-community.org/show_bug.cgi?id=11955 Signed-off-by: Bernardo Gonzalez Kriegel To test: 1. Open some authority on editor, save with empty indicators. They are saved as ind1=" " ind2=" " on auth_header tables, with spaces 2. Edit some record, link some tag with previous auth, indicators now have a space on it (or ind1 at last) 3. Apply the patch 4. repeat 2, space is gone Work as described. No koha-qa errors --- authorities/blinddetail-biblio-search.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/authorities/blinddetail-biblio-search.pl b/authorities/blinddetail-biblio-search.pl index 7bfe09e..c6a3042 100755 --- a/authorities/blinddetail-biblio-search.pl +++ b/authorities/blinddetail-biblio-search.pl @@ -150,6 +150,10 @@ else { my $tag_number = $index; $tag_number =~ s/^tag_(\d*)_.*$/$1/; +# Remove spaces in indicators +$indicator1 =~ s/\s//g; +$indicator2 =~ s/\s//g; + $template->param( authid => $authid ? $authid : "", index => $index, -- 1.7.9.5