From 5fa32f239475e019d840e01d5bf471d10f0fc1ac Mon Sep 17 00:00:00 2001 From: Janusz Kaczmarek Date: Mon, 17 Feb 2020 12:58:46 +0100 Subject: [PATCH] Bug 24674: Uncertain years for publicationyear/copyrightdate -- corrected This is a correction to Bug 11046: YYY-, YY--, Y---, are also correct according to ISBD: uncertain year, but certain decade/century (cf. n. 4.3.8 in ISBD Consolidated Edition of 2011). (Question mark is not mandatory.) In addition, in Poland a form with one only dash is quite common, like YY- (== YY--). Signed-off-by: Marcel de Rooy See last follow-up. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- C4/Biblio.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 863ce496ef..e386346825 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -2503,9 +2503,9 @@ sub _adjust_pubyear { (?\d)[-]?[.Xx?]{3} |(?\d{2})[.Xx?]{2} |(?\d{3})[.Xx?] - |(?\d)[-]{3}\? - |(?\d\d)[-]{2}\? - |(?\d{3})[-]\? + |(?\d)[-]{1,3}\?? + |(?\d\d)[-]{1,2}\?? + |(?\d{3})[-]\?? /xms ) { # the form 198-? occurred in Dutch ISBD rules my $digits = $+{year}; $retval = $digits * ( 10 ** ( 4 - length($digits) )); -- 2.20.1