[svn r12249] Check if the array is not empty before doing so many operations on it.

skala
Yannick Warnier 18 years ago
parent ee7732d0b0
commit 13e7d9fc51
  1. 1
      main/inc/lib/tablesort.lib.php

@ -85,6 +85,7 @@ class TableSort
*/
function sort_table($data, $column = 0, $direction = SORT_ASC, $type = SORT_REGULAR)
{
if(!is_array($data) or count($data)==0){return array();}
switch ($type)
{
case SORT_REGULAR :

Loading…
Cancel
Save