summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-23 21:04:11 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-23 21:04:11 -0400
commit8b3d2ab0bcd5b79c30d6e07dd8f363431d94dd72 (patch)
treecb150e0c08a043668f0014c3ac84cc7149f0c6a8 /IkiWiki/Plugin
parent1dec41278de8b0f33e1e87ec2f36cdd603528fad (diff)
test suite and partial fix for encoding issues in link renaming
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/link.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/link.pm b/IkiWiki/Plugin/link.pm
index 515a62bce..529610710 100644
--- a/IkiWiki/Plugin/link.pm
+++ b/IkiWiki/Plugin/link.pm
@@ -91,7 +91,7 @@ sub renamepage (@) { #{{{
my $linktext=$2;
my $link=$linktext;
if (bestlink($page, $2) eq $old) {
- $link=$new;
+ $link=IkiWiki::pagetitle($new, 1);
if ($linktext =~ m/.*\/*?[A-Z]/) {
# preserve leading cap of last component
my @bits=split("/", $link);