Quote:
Originally Posted by OmniBuzz
THANKs, I am going to install it today
Well, me being in France (bonjour) any chance to have a 17:00 rather than a 5:00 PM time display ?
|
FIND:
HTML Code:
if ($post_date_format == "1") { $date2 = date ("m/d/y h:i" ,$lastpost); }
elseif ($post_date_format == "2") { $date2 = date ("h:i" ,$lastpost); }
else { $date2 = date ("m/d/y h:i A" ,$lastpost); }
REPLACE WITH:
HTML Code:
if ($post_date_format == "1") { $date2 = date ("m/d/y H:i A" ,$lastpost); }
elseif ($post_date_format == "2") { $date2 = date ("H:i" ,$lastpost); }
else { $date2 = date ("m/d/y H:i A" ,$lastpost); }
edit: removed AM/PM. Thanks for pointing it out, firstrebel