[17/20] ids.cgi: Sort whitelist entries
Commit Message
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
html/cgi-bin/ids.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -1253,7 +1253,7 @@ END
my $col = "";
# Loop through all entries of the hash.
- while( (my $key) = each %ignored) {
+ foreach my $key (sort { $ignored{$a}[0] <=> $ignored{$b}[0] } keys %ignored) {
# Assign data array positions to some nice variable names.
my $address = $ignored{$key}[0];
my $remark = $ignored{$key}[1];