https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36451
Frédéric Demians <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Frédéric Demians <[email protected]> --- > What was its original need? No idea! But who knows :-) ? After all, it comes from your patch on bug 19578... It's more archeology than IT. You isolated in C4::Letters: $val =~ s/\p{P}$// if $val && $table=~/biblio/; Which itself come from bug 9886. Removing trailing ponctuation characters in biblio.title could make sense in MARC21 catalog, but not in UNIMARC. In MARC21, ISBD cataloging rules prescribe to add a ponctuation if you have subtitle: $aPrivate eyeballs :$ba golden treasury of bad taste. So biblio.title end with ' :'. It's not the case in UNIMARC. Furthermore, now that we have biblio.subtitle, even in MARC21 removing trailing ponctuation may be an issue. There may be several options: 1) Suppress any trailing ponctuation character curation. 2) Remove ponctuation less aggressively, just :,;. for example. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
