Sticky Topics Grouping in Message Index 1.0 SP1.1/SP1.2/SP1.3 Lists Sticky threads in the Message Index page in a group under a heading of "Important Threads", then after the last Sticky thread the normal threads are listed under the heading of "Board Topics". If you have either Moderation Update or Topic Rating mods installed, then you must add 1 to the colspan="7" to make it colspan="8". If you have both mods installed then change it to 9. Files changed that need to be uploaded: english.lng Sources/MessageIndex.pl DummyProof http://cgi.tripod.com/yabbsp1_1/cgi-bin/YaBB.pl Sources/MessageIndex.pl @stickylist2 = sort {$b <=> $a } keys %stickylist; ###Next 2 lines Sticky Group mod $stkynum = ''; if($start < $maxdisplay){ $stkynum = scalar @stickylist2; } # Begin printing the message index for current board. ###Start Sticky Group mod if($stkynum){ $yymain .= qq~  $stickygrp{'1'} ~; } ###End Sticky Group mod # Print the thread info. $mydate = &timeformat($mdate); ###Start Sticky Group mod if(($stkynum && ($counter >= $stkynum)) && ($stkyshowed < 1)){ $yymain .= qq~  $stickygrp{'2'} ~; $stkyshowed = 1; } ###End Sticky Group mod english.lng if($MenuType == 1) { $stickygrp{'1'} = "Important Topics"; $stickygrp{'2'} = "Board Topics";