@@ -, +, @@ - Places : 651 was Marc21 => I put the right value (607) - Serials : 225a was working, but 410t will work better - Topics : 600a => 600ab (name/surname) ; 601 => 600abcdef (hierarchical collectivities and meetings) ; 604a => 604at (author/title) - Topics : 608a (form and genre subject), 616a (trademark subject) - Authors : collective/meeting authors (710abcdef, 711abcdef, 712abcdef), trademark (716a), family (720a, 721a, 722a) --- C4/Koha.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/C4/Koha.pm +++ a/C4/Koha.pm @@ -687,31 +687,31 @@ sub getFacets { { idx => 'su-to', label => 'Topics', - tags => [ qw/ 600a 601a 602a 603a 604a 605a 606ax 610a/ ], + tags => [ qw/ 600ab 601abcdef 602a 604at 605a 606ax 608a 610a 616a / ], sep => ' - ', }, { idx => 'su-geo', label => 'Places', - tags => [ qw/ 651a / ], + tags => [ qw/ 607a / ], sep => ' - ', }, { idx => 'su-ut', label => 'Titles', - tags => [ qw/ 500a 501a 502a 503a 504a / ], + tags => [ qw/ 500a 501a 503a / ], sep => ', ', }, { idx => 'au', label => 'Authors', - tags => [ qw/ 700ab 701ab 702ab / ], + tags => [ qw/ 700ab 701ab 702ab 710abcdef 711abcdef 712abcdef 716a 720a 721a 722a / ], sep => ', ', }, { idx => 'se', label => 'Series', - tags => [ qw/ 225a / ], + tags => [ qw/ 410t / ], sep => ', ', }, ]; --