Fix league table shortcode team limit

This commit is contained in:
Brian Miyaji
2014-07-19 23:32:41 +10:00
parent 359725c948
commit 60ca7142a9

View File

@@ -57,7 +57,7 @@ $output .= '</tr>' . '</thead>' . '<tbody>';
$i = 0;
if ( is_int( $number ) && $number > 0 )
if ( is_numeric( $number ) && $number > 0 )
$limit = $number;
foreach( $data as $team_id => $row ):