Joomla! 5.2.0-beta3-dev PHP 8.1 open a page using the calendar (here in Localise for J5)
no message
Deprecated: Function strftime() is deprecated in /home/www/developpement/joaktree2/libraries/src/Form/Field/CalendarField.php on line 323
Joomla! 5.2.0-beta3-dev PHP 8.1.2 9
The message is not displayed on a 5.1.4 website, PHP 8.2.5
Labels |
Added:
No Code Attached Yet
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2024-09-16 09:39:06 |
Closed_By | ⇒ | Hackwar |
Sorry, I didn't see it.
Code
if ($this->filterFormat) {
$date = \DateTimeImmutable::createFromFormat('U', strtotime($value));
$value = $date->format($this->filterFormat);
} else {
$value = strftime($this->format, strtotime($value));
}