From cd5a26ba1d9aa9a82894da065dc6b33bdf416021 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 29 Jan 2024 17:16:50 +0100 Subject: [PATCH] Bug 14670: Use 260 if 264 is empty Sponsored-by: Orex Digital Signed-off-by: hugo --- C4/Record.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Record.pm b/C4/Record.pm index 4e0152695d..f4c78dbcb9 100644 --- a/C4/Record.pm +++ b/C4/Record.pm @@ -897,7 +897,7 @@ sub marc2cites { } else { %publication = ( title => $record->subfield("245", "a") || "", - place => $record->subfield("260", "a") || "", + place => $record->subfield("264", "a") || $record->subfield("260", "a") || "", publisher => $record->subfield("264", "b") || $record->subfield("260", "b") || "", date => $record->subfield("264", "c") || $record->subfield("260", "c") || $record->subfield("260", "g") || "" ); -- 2.39.2