Opened 15 years ago
Closed 15 years ago
#1316 closed defect (bug) (no action required)
Message inbox possible date error
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 1.1.3 | Priority: | major |
Severity: | Version: | ||
Component: | Keywords: | ||
Cc: |
Description
Not sure, but it seems to me that the above function written in bp-core-templatetags.php
function bp_format_time( $time, $just_date = false ) {
$date = date( get_option('date_format'), $time );
if ( !$just_date ) {
$date .= ' ' . ( 'at', 'buddypress' ) . date( ' ' . get_option('time_format'), $time );
}
is working here:
bp-sn-parent/message/index.php:42
<p class="date"><?php bp_message_thread_last_post_date() ?></p>
The output result is
<p class="date">04/11/2009 at 7:32 pm</p>
But it should be
<p class="date">at 04/11/2009 7:32 pm</p>
I believe that it reads correctly the way it is.