diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-27 18:42:12 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-27 18:42:12 +0000 |
commit | 0cc3b4353093918a5bab7d3e4d839fcd4c2ef922 (patch) | |
tree | 8a14bd22fd8725dfb49d630bef5cbe752ad5fc91 /IkiWiki/Rcs | |
parent | 0476614c40d731484abd8ea204fa100a161518c4 (diff) |
missed a couple htmllinks
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/svn.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Rcs/svn.pm b/IkiWiki/Rcs/svn.pm index 86fe69ab8..61c6409a7 100644 --- a/IkiWiki/Rcs/svn.pm +++ b/IkiWiki/Rcs/svn.pm @@ -126,7 +126,7 @@ sub rcs_recentchanges ($) { #{{{ $diffurl=~s/\[\[r1\]\]/$rev - 1/eg; $diffurl=~s/\[\[r2\]\]/$rev/g; push @pages, { - link => htmllink("", pagename($file), 1), + link => htmllink("", "", pagename($file), 1), diffurl => $diffurl, } if length $file; } @@ -145,7 +145,7 @@ sub rcs_recentchanges ($) { #{{{ } push @ret, { rev => $rev, - user => htmllink("", $user, 1), + user => htmllink("", "", $user, 1), committype => $committype, when => $when, message => [@message], pages => [@pages], |