This commit is contained in:
Laurent Destailleur 2017-10-22 03:22:31 +02:00
parent 6bd0550bdd
commit fb843430bf
2 changed files with 3 additions and 3 deletions

View File

@ -1375,7 +1375,7 @@ class ActionComm extends CommonObject
if ($qualified && $datestart)
{
$eventarray[$datestart]=$event;
$eventarray[]=$event;
}
}
}

View File

@ -68,7 +68,7 @@ function build_calfile($format,$title,$desc,$events_array,$outputfile)
fwrite($calfileh,"X-PUBLISHED-TTL: P".$hh."H".$mm."M".$ss."S\n");
}
foreach ($events_array as $date => $event)
foreach ($events_array as $key => $event)
{
$eventqualified=true;
if ($eventqualified)
@ -335,7 +335,7 @@ function build_rssfile($format,$title,$desc,$events_array,$outputfile,$filter=''
fwrite($fichier, $form);
foreach ($events_array as $date => $event)
foreach ($events_array as $key => $event)
{
$eventqualified=true;
if ($filter)