From b220abf42ba34ada17f6fa24c8d23c87139340f7 Mon Sep 17 00:00:00 2001 From: Andrew DeFaria Date: Tue, 23 Jan 2018 14:06:41 -0800 Subject: [PATCH] Fixed bug in detail.cgi --- maps/bin/detail.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maps/bin/detail.cgi b/maps/bin/detail.cgi index b4c3e90..2da6965 100755 --- a/maps/bin/detail.cgi +++ b/maps/bin/detail.cgi @@ -174,17 +174,17 @@ sub PrintTable { foreach my $sender (ReturnSenders $userid, $type, $next, $lines, $date) { my @msgs = ReturnMessages $userid, $sender; my @msgs2 = @msgs; - my $onlist; + my ($onlist, $seq); my $rule = 'none'; my $hit_count = 0; - ($onlist, $rule, $hit_count) = OnWhitelist $sender, $userid, 0; + ($onlist, $rule, $seq, $hit_count) = OnWhitelist $sender, $userid, 0; unless ($onlist) { - ($onlist, $rule, $hit_count) = OnBlacklist $sender, 0; + ($onlist, $rule, $seq, $hit_count) = OnBlacklist $sender, 0; unless ($onlist) { - ($onlist, $rule, $hit_count) = OnNulllist $sender, 0; + ($onlist, $rule, $seq, $hit_count) = OnNulllist $sender, 0; } # unless } # unless -- 2.17.1