Wink
Chevereto Member
▶🚶Reproduction steps
Nothing found. We don't see any date.
For example: https://demo.chevereto.com/i/sdl3264-waves-club.wJ8
This is my quick fix to solve this issue
1. Open /app/lib/functions.render.php
2. Find
3. Replace with
- Upload any photo with EXIF
- Try to find any EXIF fields with any date, such as DateTimeOriginal or DateTimeModified
Nothing found. We don't see any date.
For example: https://demo.chevereto.com/i/sdl3264-waves-club.wJ8
This is my quick fix to solve this issue
1. Open /app/lib/functions.render.php
2. Find
PHP:
switch ($key) {
case 'DateTime':
case 'DateTimeOriginal':
case 'DateTimeDigitized':
$value = preg_replace('/(\d{4})(:)(\d{2})(:)(\d{2})/', '$1-$3-$5', $value);
break;
PHP:
switch ($key) {
case 'DateTime':
case 'DateTimeOriginal':
case 'DateTimeDigitized':
case 'DateTimeModified':
$value = (isset($Exif->$key))? preg_replace('/(\d{4})(:)(\d{2})(:)(\d{2})/', '$1-$3-$5', strval($Exif->$key)) : '';
break;