ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/help.ext
(Generate patch)

Comparing deliantra/server/ext/help.ext (file contents):
Revision 1.3 by root, Wed Apr 18 17:57:24 2007 UTC vs.
Revision 1.4 by root, Thu Apr 19 21:54:41 2007 UTC

61 push @{$topics{$v->[0]}}, $k; 61 push @{$topics{$v->[0]}}, $k;
62 } 62 }
63 63
64 my $res; 64 my $res;
65 while (my ($k, $v) = each %topics) { 65 while (my ($k, $v) = each %topics) {
66 $res .= "[b]$k:[/b]\n" . (join " ", @$v) . "\n\n"; 66 $res .= "[b]$k:[/b]\n" . (sort join " ", @$v) . "\n\n";
67 } 67 }
68 68
69 $pl->reply (undef, $res); 69 $pl->reply (undef, $res);
70 70
71 } elsif (my $topic = $TOPIC->{$topic}) { 71 } elsif (my $topic = $TOPIC->{$topic}) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines