I would like to add the exact time to the time format when a post has been posted.
 
Feb 27, 2011, 12:30
 
If you hover the date with your mouse you can see that the exact date is recorded.
This is the code for the date in threads:
 
	
	
	
		
I have found the phrase "date_x_at_time_y" which is used for the time format when you hover the post date, but I haven't figured where it comes from.
 
It seems that <xen:datetime time="$post.post_date" /> produces this:
	
	
	
		
This is the line that produces the visible post date of posts (without the time).
So I would like to know how I can edit this line to include the "date_x_at_time_y" phrase.
Thank you.
				
			Feb 27, 2011, 12:30
If you hover the date with your mouse you can see that the exact date is recorded.
This is the code for the date in threads:
		HTML:
	
	<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="datePermalink"><xen:datetime time="$post.post_date" /></a>
	It seems that <xen:datetime time="$post.post_date" /> produces this:
		HTML:
	
	<span title="Feb 27, 2011 at 8:48 AM" class="DateTime">Feb 27, 2011</span>
	So I would like to know how I can edit this line to include the "date_x_at_time_y" phrase.
Thank you.