Skip to content

Commit

Permalink
Fix incorrect metadata namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
eloyer committed Nov 25, 2015
1 parent d369d61 commit 9f19ff1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
table.append('<tr><td>dcterms:title</td><td>'+node.getDisplayTitle()+'</td></tr>');
if (null!=node.current.description) table.append('<tr><td>dcterms:description</td><td>'+node.current.description+'</td></tr>');
if (null!=node.current.source) table.append('<tr><td>dcterms:source</td><td>'+node.current.source+'</td></tr>');
if (null!=node.current.sourceLocation) table.append('<tr><td>dcterms:sourceLocation</td><td><a href="'+node.current.sourceLocation+'">'+node.current.sourceLocation+'</a></td></tr>');
if (null!=node.current.sourceLocation) table.append('<tr><td>art:sourceLocation</td><td><a href="'+node.current.sourceLocation+'">'+node.current.sourceLocation+'</a></td></tr>');
// auxiliary properties
for ( prop in node.current.auxProperties ) {
for ( i in node.current.auxProperties[ prop ] ) {
Expand Down

0 comments on commit 9f19ff1

Please sign in to comment.