Skip to:
Content

BuddyPress.org

Ticket #4573: 4573.patch

File 4573.patch, 1003 bytes (added by trishasalas, 12 years ago)
  • bp-activity-admin.php

     
    12971297                $actions = apply_filters( 'bp_activity_admin_comment_row_actions', array_filter( $actions ), $item );
    12981298
    12991299                /* translators: 2: activity admin ui date/time */
    1300                 printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>', 'buddypress' ), bp_get_root_domain() . '/' . bp_get_activity_root_slug() . '/p/' . $item['id'] . '/', date_i18n( get_option( 'date_format' ), strtotime( $item['date_recorded'] ) ), date_i18n( get_option( 'time_format' ), strtotime( $item['date_recorded'] ) ) );
     1300                printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>', 'buddypress' ), bp_get_root_domain() . '/' . bp_get_activity_root_slug() . '/p/' . $item['id'] . '/', get_date_from_gmt( $item['date_recorded'], 'F j, Y' ), get_date_from_gmt( $item['date_recorded'], 'g:i a' ) );
    13011301
    13021302                // End timestamp
    13031303                echo '</div>';