Ticket #6660: 6660-strong.patch
File 6660-strong.patch, 1.6 KB (added by , 9 years ago) |
---|
-
src/bp-activity/bp-activity-admin.php
740 740 $datef = __( 'M j, Y @ G:i', 'buddypress' ); 741 741 $date = date_i18n( $datef, strtotime( $item->date_recorded ) ); 742 742 ?> 743 <span id="timestamp"><?php printf( __( 'Submitted on: <strong>%1$s</strong>', 'buddypress' ), $date); ?></span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e( 'Edit', 'buddypress' ); ?></a>743 <span id="timestamp"><?php printf( __( 'Submitted on: %s', 'buddypress' ), '<strong>' . $date . '</strong>' ); ?></span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e( 'Edit', 'buddypress' ); ?></a> 744 744 745 745 <div id='timestampdiv' class='hide-if-js'> 746 746 <?php touch_time( 1, 0, 5 ); ?> -
src/bp-members/bp-members-admin.php
992 992 $datef = __( 'M j, Y @ G:i', 'buddypress' ); 993 993 $date = date_i18n( $datef, strtotime( $user->user_registered ) ); 994 994 ?> 995 <span id="timestamp"><?php printf( __( 'Registered on: <strong>%1$s</strong>', 'buddypress' ), $date); ?></span>995 <span id="timestamp"><?php printf( __( 'Registered on: %s', 'buddypress' ), '<strong>' . $date . '</strong>' ); ?></span> 996 996 </div> 997 997 </div> <!-- #misc-publishing-actions --> 998 998