aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/edittemplate.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-20 16:23:15 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-20 16:23:15 -0400
commit84347a1247c3c92098b60e76e2c5ca6e7bb7be56 (patch)
tree8e0c56abf91df8987dce6b528e117e3bbf94e0e7 /IkiWiki/Plugin/edittemplate.pm
parent6088ad861cbd43d277933c4e2c6dcd3cefb65f89 (diff)
downloadikiwiki-84347a1247c3c92098b60e76e2c5ca6e7bb7be56.tar
ikiwiki-84347a1247c3c92098b60e76e2c5ca6e7bb7be56.tar.gz
avoid duplicate template lookup
Diffstat (limited to 'IkiWiki/Plugin/edittemplate.pm')
-rw-r--r--IkiWiki/Plugin/edittemplate.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm
index 1fff03695..4d4117c15 100644
--- a/IkiWiki/Plugin/edittemplate.pm
+++ b/IkiWiki/Plugin/edittemplate.pm
@@ -93,11 +93,12 @@ sub formbuilder (@) { #{{{
if (exists $pagestate{$registering_page}{edittemplate}) {
foreach my $pagespec (sort keys %{$pagestate{$registering_page}{edittemplate}}) {
if (pagespec_match($p, $pagespec, location => $registering_page)) {
+ my $template=$pagestate{$registering_page}{edittemplate}{$pagespec};
$form->field(name => "editcontent",
- value => filltemplate($pagestate{$registering_page}{edittemplate}{$pagespec}, $page));
+ value => filltemplate($template, $page));
$form->field(name => "type",
- value => pagetype($pagesources{$pagestate{$registering_page}{edittemplate}{$pagespec}}))
- if $pagesources{$pagestate{$registering_page}{edittemplate}{$pagespec}};
+ value => pagetype($pagesources{$template}))
+ if $pagesources{$template};
return;
}
}