summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xikiwiki4
1 files changed, 1 insertions, 3 deletions
diff --git a/ikiwiki b/ikiwiki
index 42a0ef3ba..1b282abf9 100755
--- a/ikiwiki
+++ b/ikiwiki
@@ -644,9 +644,7 @@ sub cgi () {
my $list="<ul>\n";
foreach my $change (rcs_recentchanges(100)) {
$list.="<li>";
- foreach my $page (@{$change->{pages}}) {
- $list.=$page." ";
- }
+ $list.=join(", ", map { htmllink("index", $_) } @{$change->{pages}});
$list.="<br>\n";
$list.="changed ".$change->{when}." by ".
htmllink("index", $change->{user}).