diff options
author | intrigeri <intrigeri@boum.org> | 2009-01-27 00:00:00 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2009-01-27 00:00:00 +0100 |
commit | 03ab2623194009bf3cb82747c59dbf565b89e7bf (patch) | |
tree | c562ebaad239164b566d9ff7aa127db69a2cfa8d /IkiWiki/Plugin/rename.pm | |
parent | 8915d2553c056304bef2fd77b8fc03d99a49e2a9 (diff) | |
download | ikiwiki-03ab2623194009bf3cb82747c59dbf565b89e7bf.tar ikiwiki-03ab2623194009bf3cb82747c59dbf565b89e7bf.tar.gz |
revert renamepage's hook original name
Signed-off-by: intrigeri <intrigeri@boum.org>
Diffstat (limited to 'IkiWiki/Plugin/rename.pm')
-rw-r--r-- | IkiWiki/Plugin/rename.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/rename.pm b/IkiWiki/Plugin/rename.pm index b43c5282a..90af1b4a9 100644 --- a/IkiWiki/Plugin/rename.pm +++ b/IkiWiki/Plugin/rename.pm @@ -216,7 +216,7 @@ sub postrename ($;$$$) { # Update edit form content to fix any links present # on it. $postrename->param("editcontent", - renamelink_hook($dest, $src, $dest, + renamepage_hook($dest, $src, $dest, $postrename->param("editcontent"))); # Get a new edit token; old was likely invalidated. @@ -446,10 +446,10 @@ sub linklist { } @{$list}] } -sub renamelink_hook ($$$$) { +sub renamepage_hook ($$$$) { my ($page, $src, $dest, $content)=@_; - IkiWiki::run_hooks(renamelink => sub { + IkiWiki::run_hooks(renamepage => sub { $content=shift->( page => $page, oldpage => $src, @@ -506,7 +506,7 @@ sub fixlinks ($$$) { if ($needfix) { my $file=$pagesources{$page}; my $oldcontent=readfile($config{srcdir}."/".$file); - my $content=renamelink_hook($page, $rename->{src}, $rename->{dest}, $oldcontent); + my $content=renamepage_hook($page, $rename->{src}, $rename->{dest}, $oldcontent); if ($oldcontent ne $content) { my $token=IkiWiki::rcs_prepedit($file); eval { writefile($file, $config{srcdir}, $content) }; |