Re: Need help with Ako Gallery date stamp. Hi,
Modify sub_viewdetail.php as follows:
1. Find the line code below
$fimgdate = strftime("%c", $imgdate);
2. Comment it out
# $fimgdate = strftime("%c", $imgdate);
3. Add the two lines below at the same place:
$timestamp = strtotime($imgdate);
$fimgdate = strftime("%c", $timestamp);
You should see the correct date but the time will be 00:00:00
Hope this helps.
Michael |