Fix wrong indexing for categories array in calendar category report

This commit is contained in:
Hadi Nategh 2016-11-14 15:11:50 +01:00
parent 9c67a1466a
commit a1273acf54

View File

@ -153,7 +153,7 @@ class calendar_category_report extends calendar_ui{
else
{
list($button) = @each($content['button']);
$result = $categories = array ();
$result = $categories = $content_rows = array ();
$users = array_keys($GLOBALS['egw']->accounts->search(array('type'=>'accounts', active=>true)));
// report button pressed
@ -168,7 +168,7 @@ class calendar_category_report extends calendar_ui{
{
if ($row['enable'])
{
$categories [$key] = $row['cat_id'];
$categories [] = $content_rows [$key] = $row['cat_id'];
}
}
@ -186,7 +186,7 @@ class calendar_category_report extends calendar_ui{
{
if (is_array($day_events))
{
foreach ($categories as $row_id => $cat_id)
foreach ($content_rows as $row_id => $cat_id)
{
$this->process_days(
$weeks_sum,