View Single Post
  #23  
Old 05-16-2007, 04:27 PM
Dennis's Avatar
Dennis+ Offline
Team Pixelpost
 
Join Date: Jul 2006
Posts: 2,394
Send a message via MSN to Dennis
Ok, open functions_exif.php, goto line 77 (or nearby) where the $capture_date statement is.

Replace that line with:

PHP Code:
$exif_result['DateTimeOriginalSubIFD'] = trim(str_replace('-',':',$exif_result['DateTimeOriginalSubIFD']));
$exif_result['DateTimeOriginalSubIFD'] = str_replace(' ',':',$exif_result['DateTimeOriginalSubIFD']);
$ftime explode(":"$exif_result['DateTimeOriginalSubIFD']);
$unxTimestamp mktime($ftime[3],$ftime[4],$ftime[5],$ftime[1],$ftime[2],$ftime[0]);
$capture_date date($cfgrow['dateformat'],$unxTimestamp); 
__________________
My photoblog, powered by PixelPost 1.9 dev SVN | My Pixelpost Addons | My Cool Photoblog profile
Reply With Quote