diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-03-02 19:46:29 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-03-02 19:46:29 +0000 |
commit | 786915c68d726b964a0c7bc4da5e1bc55de522fa (patch) | |
tree | e0663627e493616439c6ffd071ea89438a5cd3f6 /Echolot/Fromlines.pm | |
parent | bd41d830d9bf16bffd27c0d809cde8dc065d4dcc (diff) |
Try making types more clear with newlines
Diffstat (limited to 'Echolot/Fromlines.pm')
-rw-r--r-- | Echolot/Fromlines.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Fromlines.pm b/Echolot/Fromlines.pm index a0c7bbf..4d77d7f 100644 --- a/Echolot/Fromlines.pm +++ b/Echolot/Fromlines.pm @@ -1,7 +1,7 @@ package Echolot::Fromlines; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Fromlines.pm,v 1.6 2003/03/02 19:44:50 weasel Exp $ +# $Id: Fromlines.pm,v 1.7 2003/03/02 19:46:29 weasel Exp $ # =pod @@ -59,7 +59,7 @@ sub build_fromlines() { }; my $types_from; for my $frominfo (sort keys %$from_types) { - my $types = join ", ", sort { $a cmp $b } @{$from_types->{$frominfo}}; + my $types = join "<BR>", sort { $a cmp $b } @{$from_types->{$frominfo}}; $types_from->{$types} = $frominfo; }; my @types_from = map { |