summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-03-27 15:27:38 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-03-27 15:27:38 -0400
commitd622da057be3fcd3c55ebf8f3651966f7dec668b (patch)
tree8dcf37ec993f6b92ee2ea740bb07d31e675cefda /IkiWiki/Plugin
parent529a06b7cc4991f6e78fc59855398f986d2dc21e (diff)
rename function for clarity, formatting improvements
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/rename.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/rename.pm b/IkiWiki/Plugin/rename.pm
index 09250af81..bf5a28240 100644
--- a/IkiWiki/Plugin/rename.pm
+++ b/IkiWiki/Plugin/rename.pm
@@ -10,7 +10,7 @@ sub import {
hook(type => "formbuilder_setup", id => "rename", call => \&formbuilder_setup);
hook(type => "formbuilder", id => "rename", call => \&formbuilder);
hook(type => "sessioncgi", id => "rename", call => \&sessioncgi);
- hook(type => "rename", id => "rename", call => \&rename);
+ hook(type => "rename", id => "rename", call => \&rename_subpages);
}
sub getsetup () {
@@ -414,7 +414,7 @@ sub sessioncgi ($$) {
}
# Add subpages to the list of pages to be renamed, if needed.
-sub rename(@) {
+sub rename_subpages (@) {
my %params = @_;
my %torename = %{$params{torename}};
@@ -501,6 +501,7 @@ sub rename_hook (@) {
$done{$torename->{src}}=1;
}
}
+
push @torename, rename_hook(
torename => \@nextset,
done => \%done,