diff options
-rw-r--r-- | config/widget-snort/snort_alerts.widget.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/widget-snort/snort_alerts.widget.php b/config/widget-snort/snort_alerts.widget.php index b7b60a07..bb51a387 100644 --- a/config/widget-snort/snort_alerts.widget.php +++ b/config/widget-snort/snort_alerts.widget.php @@ -29,14 +29,14 @@ global $config, $g; /* array sorting */ function sksort(&$array, $subkey="id", $sort_ascending=false) { - if (count($array)) { - $temp_array[key($array)] = array_shift($array); - }; /* an empty array causes sksort to fail - this test alleviates the error */ if(empty($array)) { return false; } + if (count($array)) { + $temp_array[key($array)] = array_shift($array); + }; foreach ($array as $key => $val){ $offset = 0; $found = false; |