forked from extern/egroupware
Fix for bug #437333.
This commit is contained in:
parent
146f044243
commit
e6a9e935a9
@ -448,7 +448,7 @@ class calendar extends calendar_
|
||||
|
||||
$this->repeating_event_matches = 0;
|
||||
|
||||
if(count($this->repeated_events) <= 0)
|
||||
if($this->repeated_events == Null)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
@ -280,6 +280,11 @@ class calendar_holiday
|
||||
{
|
||||
global $phpgw;
|
||||
|
||||
if($this->holidays == Null)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
||||
$c_holidays = count($this->holidays);
|
||||
for($i=0;$i<$c_holidays;$i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user