master
joey 2006-03-11 04:38:56 +00:00
parent 15b5e9e7ae
commit 7e1a8cd633
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}