| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Trac
Revision: 7500
Author: rblank
Date: 29 Aug 2008 19:58:02
Diff at Trac: http://trac.edgewall.org/changeset/7500
Changes:0.11-stable: Fixed construction of `.href` URL when customizing mainnav and metanav, to avoid escaping.
Closes #7567.
Files:| ... | ...@@ -468,7 +468,7 @@ | |
| 468 | 468 | href = category_section.get(name + '.href') |
| 469 | 469 | if href: |
| 470 | 470 | if href.startswith('/'): |
| 471 | href = req.href(href) | |
| 471 | href = req.href() + href | |
| 472 | 472 | if label: |
| 473 | 473 | item = tag.a(label) # create new label |
| 474 | 474 | elif not item: |