From 28c75315cbce584bc7558337898df412a3acea2d Mon Sep 17 00:00:00 2001
From: Vitor FERNANDES <vfernandes@keep.pt>
Date: Thu, 3 Jan 2013 11:46:49 +0000
Subject: [PATCH] Bug 9341: Problem with UNIMARC authors facets

In UNIMARC installations the authors have a double comma separating the subfield a and the subfield b.

Test plan:

- After applying the patch do a search and check the double comma in authors facets.
- Apply the patch
- Do a new search
- Check if authors facets as a double comma

Sponsored-by: KEEP SOLUTIONS
---
 C4/Koha.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/C4/Koha.pm b/C4/Koha.pm
index 3892468..b6a8a8c 100644
--- a/C4/Koha.pm
+++ b/C4/Koha.pm
@@ -706,7 +706,7 @@ sub getFacets {
                 idx   => 'au',
                 label => 'Authors',
                 tags  => [ qw/ 700ab 701ab 702ab / ],
-                sep   => ', ',
+                sep   => ' ',
             },
             {
                 idx   => 'se',
-- 
1.7.9.5