Skip to content

Commit

Permalink
fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstadler committed Jun 24, 2024
1 parent e5c1e19 commit edf32c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/bibl.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ declare function bibl:printBookCitation($biblStruct as element(tei:biblStruct),
else if(exists($editors)) then ($editors, concat(' (', lang:get-language-string('ed', $lang), '), '))
else (),
$title,
if(exists($editors) and exists($authors)) then bibl:edited-by($biblStruct, $lang),
if(exists($editors) and exists($authors)) then bibl:edited-by($biblStruct, $lang) else (),
if(exists($series)) then (' (', $series, '), ') else ', ',
if($biblStruct/tei:monogr/tei:imprint/tei:biblScope[@unit = 'vol']) then bibl:print-single-biblScope-unit((), $biblStruct/tei:monogr/tei:imprint/tei:biblScope[@unit = 'vol'], $lang) || ', ' else (),
$pubPlaceNYear,
Expand Down

0 comments on commit edf32c4

Please sign in to comment.