LibreBooking / app

Repository for the last open source version of Booked Scheduler. The "develop" branch contains the most current working code of the project and should be considered beta. The "master" branch is the most current stable release of BookedScheduler. Please read doc/README.md for further details.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

strftime() DEPRECATED in php8.1+

clamattu opened this issue · comments

$dates['calendar_dates'] = 'd '.(preg_replace('/(.)(.)(.)/i', '\\\$1\\\$2\\\$3', strftime('%b')));

Got error 'PHP message: PHP Deprecated: Function strftime() is deprecated in ///lang/it_it.php on line 42', referer: https:///librebooking/Web/index.php

I solved in this way
$dates['calendar_dates'] = 'd '.(preg_replace('/(.)(.)(.)/i', '\$1\$2\$3', date("M")));