From: dms Date: Fri, 9 Feb 2001 13:44:45 +0000 (+0000) Subject: we did a sort() when we should not have for '.sched' X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c9fabbcd4023cb515f367905383de1442fe95fda;p=infobot.git we did a sort() when we should not have for '.sched' git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@372 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/Modules/UserDCC.pl b/src/Modules/UserDCC.pl index 9343338..2960e29 100644 --- a/src/Modules/UserDCC.pl +++ b/src/Modules/UserDCC.pl @@ -1218,10 +1218,11 @@ sub userDCC { my @time; foreach (sort { $a <=> $b } keys %time) { my $str = join(", ", sort keys %{ $time{$_} }); + &DEBUG("time => $_, str => $str"); push(@time, "$str (".&Time2String($_).")"); } - &pSReply( &formListReply(0, "Schedulers: ", sort @time ) ); + &pSReply( &formListReply(0, "Schedulers: ", @time ) ); &pSReply( &formListReply(0, "Scheds to run: ", sort @list ) ); &pSReply( &formListReply(0, "Scheds running(should not happen?) ", sort @run ) );