You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; date_iterator has a deprecated constructor in mod\tracker\locallib.php on line 1858
The text was updated successfully, but these errors were encountered:
Sorry to take so long to get back to this. Even though the debugging output points to locallib.php line 1858, the line that actually needs to be changed is 1864.
Right now it is: function date_iterator($year, $month) {
but it needs to be changed to: function date_iterator_constructor($year, $month) {
in PHP 7 the following error occurs.
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; date_iterator has a deprecated constructor in mod\tracker\locallib.php on line 1858
The text was updated successfully, but these errors were encountered: