aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/edittemplate.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-18 13:47:30 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-18 13:47:30 -0400
commitd1a88c892ea1786e3f8451d0ef9069be9358e332 (patch)
tree999488147b26094aafef3f3a6c5f2209f6716fc3 /IkiWiki/Plugin/edittemplate.pm
parent967c845e473a34ac5c3b112f53a7721d029204a4 (diff)
downloadikiwiki-d1a88c892ea1786e3f8451d0ef9069be9358e332.tar
ikiwiki-d1a88c892ea1786e3f8451d0ef9069be9358e332.tar.gz
edittemplate: Allow template page name to be specified using anything legal for a wikilink (including eg, leading slashes).
Before, the htmllink would display the link to the template as if it were a wikilink, but what was stored was not, which could lead to confusing situations.
Diffstat (limited to 'IkiWiki/Plugin/edittemplate.pm')
-rw-r--r--IkiWiki/Plugin/edittemplate.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm
index 7d2eba194..e8e7b1e04 100644
--- a/IkiWiki/Plugin/edittemplate.pm
+++ b/IkiWiki/Plugin/edittemplate.pm
@@ -55,7 +55,8 @@ sub preprocess (@) {
}
my $link=linkpage($params{template});
- $pagestate{$params{page}}{edittemplate}{$params{match}}=$link;
+ my $bestlink=bestlink($params{page}, $link);
+ $pagestate{$params{page}}{edittemplate}{$params{match}}=$bestlink;
return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
add_depends($params{page}, $link, deptype("presence"));