Skip to content

Commit

Permalink
Fixed non-html listsections output.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 22, 2009
1 parent 7772fcf commit 68ef483
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions IcculusFinger_daemon.pl
Expand Up @@ -78,6 +78,7 @@
# 2.1.19: Allow per-user RSS feeds.
# 2.1.20: RSS fixes.
# 2.1.21: Fixed "finger @hostname" uninitialized variable (thanks, Thomas!).
# 2.1.22: Fixed non-html listsections output.
#-----------------------------------------------------------------------------

# !!! TODO: If an [img] isn't in a link tag, make it link to the image.
Expand All @@ -91,7 +92,7 @@
use POSIX; # bloop.

# Version of IcculusFinger. Change this if you are forking the code.
my $version = 'v2.1.21';
my $version = 'v2.1.22';


#-----------------------------------------------------------------------------#
Expand Down Expand Up @@ -1179,7 +1180,7 @@ sub do_fingering {
}
} else {
foreach (@sectionlist) {
$output_text .= " finger $user\@$host?section=$_\n";
$output_text .= " finger $user?section=$_\@$host\n";
}
}
}
Expand Down

0 comments on commit 68ef483

Please sign in to comment.