mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Do not write the rows in calendar cat. report if all columns are zero
This commit is contained in:
parent
1eff570926
commit
7329088e14
@ -397,6 +397,14 @@ class calendar_category_report extends calendar_ui{
|
||||
|
||||
foreach ($raw_csv as &$row)
|
||||
{
|
||||
$check_row = 0;
|
||||
foreach ($row as $val)
|
||||
{
|
||||
$check_row += $val;
|
||||
}
|
||||
//check if all values of the row is zero then escape the row
|
||||
if (!$check_row) continue;
|
||||
|
||||
// printout each row into file
|
||||
fputcsv($fp, array_values($row));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user