Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #762 from schemaorg/iss761
Browse files Browse the repository at this point in the history
Change ?ext=ext link to full URL in more.. pannel (#761)
  • Loading branch information
danbri committed Sep 15, 2015
2 parents 084e2f6 + 8b7603b commit 8ff6217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdoapp.py
Expand Up @@ -294,7 +294,7 @@ def moreInfoBlock(self, node, layer='core'):
for l in all_terms[node.id]:
l = l.replace("#","")
if ENABLE_HOSTED_EXTENSIONS:
items.append("'{0}' is mentioned in extension layer: <a href='?ext={1}'>{2}</a>".format( node.id, l, l ))
items.append("'{0}' is mentioned in extension layer: <a href='{1}'>{2}</a>".format( node.id, makeUrl(l,node.id), l ))

moreinfo = """<div>
<div id='infobox' style='text-align: right;'><b><span style="cursor: pointer;">[more...]</span></b></div>
Expand Down

0 comments on commit 8ff6217

Please sign in to comment.