fix PHP Fatal error: Using $this when not in object context

This commit is contained in:
Ralf Becker 2015-02-04 11:18:53 +00:00
parent 5ea76e2230
commit fffdef027e

View File

@ -660,7 +660,7 @@ class calendar_groupdav extends groupdav_handler
}
}
// if recurring event starts in future behind horizont, nothing will be returned by bo::search()
if (!isset($master) && !($master = $this->bo->read($uid)))
if (!isset($master) && !($master = $bo->read($uid)))
{
return array();
}