Changeset 6989 for extensions/exif_view


Ignore:
Timestamp:
Sep 21, 2010, 10:43:45 PM (14 years ago)
Author:
plg
Message:

bug 1862 fixed: no date format on creation date

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/exif_view/main.inc.php

    r4660 r6989  
    11<?php /*
    22Plugin Name: Exif View
    3 Version: 0.2
     3Version: auto
    44Description: Converts EXIF values to human readable localized values. Corresponds to EXIF specification 2.2, details in http://www.exif.org. Easily extensible.
    5 Plugin URI: http://www.phpwebgallery.net
     5Plugin URI: http://piwigo.org/ext/extension_view.php?eid=155
    66Author: Martin Javorek
    77Author URI: mailto:maple@seznam.cz&subject=PWG%20EXIF%20View
     
    9696   // Date Time Original
    9797   if (!(strpos($key, 'DateTimeOriginal') === FALSE)) {
    98       return formatDate($value);
     98     // to fix bug:1862 the easiest way without releasing a new version of
     99     // Piwigo itself, it's better to bypass the date format function
     100     //
     101     // return formatDate($value);
     102     return $value;
    99103   }
    100104
Note: See TracChangeset for help on using the changeset viewer.