]> git.donarmstrong.com Git - infobot.git/commitdiff
sort mini-list
authortimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 28 Jun 2004 19:11:04 +0000 (19:11 +0000)
committertimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 28 Jun 2004 19:11:04 +0000 (19:11 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@965 c11ca15a-4712-0410-83d8-924469b57eb5

src/Misc.pl

index 295d45ed0bbd1e4b8c8693c7fa51222ee5bb1b1d..10609fe1da4f4b7860959bcfe5c6f0b136e3c365 100644 (file)
@@ -138,11 +138,12 @@ sub formListReply {
        @list = @list[0..$maxshow-1];
     }
 
+    @list = sort @list;
     # form the reply.
     while () {
        $reply  = $prefix ."(\002". scalar(@list). "\002 shown";
        $reply .= "; \002$total\002 total" if ($total != scalar @list);
-       $reply .= "): ". join(" \002;;\002 ",@list) .".";
+       $reply .= "): ". join(" \002;;\002 ", @list) .".";
 
        last if (length($reply) < $maxlen and scalar(@list) <= $maxshow);
        last if (scalar(@list) == 1);