Skip to content

Commit f8d1f09

Browse files
committed
Fix an issue where @mutual and @Passive had become inverted
1 parent c1820b0 commit f8d1f09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/xar-resources/services/get-rec.xql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ declare function local:markdown($nodes as node()*) as item()* {
8787
return
8888
<tei:active ref="{$ref}">{$label}</tei:active>
8989
,
90-
for $ref in tokenize($node/@passive, " ")[. ne ""]
90+
for $ref in tokenize($node/@mutual, " ")[. ne ""]
9191
let $label := local:get-label($ref)
9292
return
9393
<tei:mutual ref="{$ref}">{$label}</tei:mutual>
9494
,
95-
for $ref in tokenize($node/@mutual, " ")[. ne ""]
95+
for $ref in tokenize($node/@passive, " ")[. ne ""]
9696
let $label := local:get-label($ref)
9797
return
9898
<tei:passive ref="{$ref}">{$label}</tei:passive>

0 commit comments

Comments
 (0)