summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-11 04:38:56 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-03-11 04:38:56 +0000
commit7e1a8cd6333feebdb0039b66379726910930fd9e (patch)
tree176c84d0afa0383171e18057f1fe3fb9462b4420
parent15b5e9e7aeec9601880e8155f18217f7b84667aa (diff)
up
-rwxr-xr-xikiwiki4
1 files changed, 2 insertions, 2 deletions
diff --git a/ikiwiki b/ikiwiki
index 129076f75..f533cd096 100755
--- a/ikiwiki
+++ b/ikiwiki
@@ -645,10 +645,10 @@ sub cgi () {
my $list="<ul>\n";
foreach my $change (rcs_recentchanges(100)) {
$list.="<li>";
- $list.=join(", ", map { htmllink("index", $_, 1) } @{$change->{pages}});
+ $list.=join(", ", map { htmllink("", $_, 1) } @{$change->{pages}});
$list.="<br>\n";
$list.="changed ".$change->{when}." by ".
- htmllink("index", $change->{user}, 1).
+ htmllink("", $change->{user}, 1).
": <i>".$change->{message}."</i>\n";
$list.="</li>\n";
}