diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-11 04:32:19 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-11 04:32:19 +0000 |
commit | 41369c2838b08b184b03857cc544e052e8ed379d (patch) | |
tree | 8c4ec3522ab28f07309c15bcf51b9a1f603b8e9b | |
parent | 47789aee7aaecd9205b4a8f73a699289104c6c56 (diff) |
recentchanges
-rwxr-xr-x | ikiwiki | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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}). |