View Single Post
  #4  
Old 04-13-2007, 04:43 PM
Dennis's Avatar
Dennis+ Offline
Team Pixelpost
 
Join Date: Jul 2006
Posts: 2,394
Send a message via MSN to Dennis
Ok here ya go: I'm assuming your running version 1.6: open functions_exif.php in your includes folder. Use an ASCII editor, preferably one that understands unix style text files.

Go to line 77
PHP Code:
$capture_date $exif_result['DateTimeOriginalSubIFD']; // Date and Time 
Add the following code below that line:

PHP Code:
$capture_date gmdate('M j, Y - H:i'strtotime($capture_date)+(3600*$cfgrow['timezone'])); 
Save, upload and enjoy.
__________________
My photoblog, powered by PixelPost 1.9 dev SVN | My Pixelpost Addons | My Cool Photoblog profile
Reply With Quote