mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +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)
|
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
|
// printout each row into file
|
||||||
fputcsv($fp, array_values($row));
|
fputcsv($fp, array_values($row));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user