Looks like an extra div was giving me this issue. I changed line 671 from
$list .= “<div style=’clear: both;’></div></div><!– end list –>”;
to
$list .= “<div style=’clear: both;’></div><!– end list –>”;
and it fixed problem. Any other ideas out there?
instead of using ksort. This allows for localization.
`if (!function_exists(‘cmps’)) {
function cmps($a, $b)
{
$coll = collator_create( ‘cs’ );
$res = collator_compare( $coll, $a, $b );
return $res;
}
}
uksort($groups,”cmps”);