Changeset 2402
- Timestamp:
- 01/22/2010 10:57:34 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-messages/bp-messages-templatetags.php
r2401 r2402 238 238 239 239 function bp_message_thread_last_post_date() { 240 returnbp_get_message_thread_last_post_date();240 echo bp_get_message_thread_last_post_date(); 241 241 } 242 242 function bp_get_message_thread_last_post_date() { 243 243 global $messages_template; 244 244 245 echoapply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( strtotime($date) ) );245 return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( strtotime($date) ) ); 246 246 } 247 247 … … 252 252 global $messages_template, $bp; 253 253 254 echoapply_filters( 'bp_get_message_thread_avatar', bp_core_fetch_avatar( array( 'item_id' => $sender, 'type' => 'thumb' ) ) );254 return apply_filters( 'bp_get_message_thread_avatar', bp_core_fetch_avatar( array( 'item_id' => $sender, 'type' => 'thumb' ) ) ); 255 255 } 256 256
Note: See TracChangeset
for help on using the changeset viewer.