Fix for unset events
This commit is contained in:
parent
4b072dc2df
commit
b33da1563f
|
@ -240,7 +240,7 @@ function parseData($config, $data) {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (is_null($event_info['event_id'])) {
|
||||
if (is_null($event_info) || is_null($event_info['event_id'])) {
|
||||
$columns[] = '<td> </td>';
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue