fix call in static function: use self function
This commit is contained in:
parent
5a8e28c0fd
commit
e7f7e499a7
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ class BMCalendar
|
|||
$end,
|
||||
$start);
|
||||
while ($row = $res->FetchArray(MYSQLI_ASSOC)) {
|
||||
$dates = BMCalendar::_getOccurencesInTimeframe($row, $start, $end);
|
||||
$dates = self::_getOccurencesInTimeframe($row, $start, $end);
|
||||
if (count($dates) > 0) {
|
||||
$remindDates = array_merge($remindDates, $dates);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue