mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
More php8 compat fixes
This commit is contained in:
@@ -79,9 +79,9 @@ class Calendar_Month extends Calendar
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
function Calendar_Month($y, $m, $firstDay=null)
|
||||
function __construct($y, $m, $firstDay=null)
|
||||
{
|
||||
parent::Calendar($y, $m);
|
||||
parent::__construct($y, $m);
|
||||
$this->firstDay = $this->defineFirstDayOfWeek($firstDay);
|
||||
}
|
||||
|
||||
@@ -135,4 +135,4 @@ class Calendar_Month extends Calendar
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user