FIX #7671
This commit is contained in:
parent
6bd0550bdd
commit
fb843430bf
@ -1375,7 +1375,7 @@ class ActionComm extends CommonObject
|
||||
|
||||
if ($qualified && $datestart)
|
||||
{
|
||||
$eventarray[$datestart]=$event;
|
||||
$eventarray[]=$event;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user