Skip to:
Content

BuddyPress.org

Ticket #6660: 6660-strong.patch

File 6660-strong.patch, 1.6 KB (added by ramiy, 9 years ago)
  • src/bp-activity/bp-activity-admin.php

     
    740740                                        $datef = __( 'M j, Y @ G:i', 'buddypress' );
    741741                                        $date  = date_i18n( $datef, strtotime( $item->date_recorded ) );
    742742                                        ?>
    743                                         <span id="timestamp"><?php printf( __( 'Submitted on: <strong>%1$s</strong>', 'buddypress' ), $date ); ?></span>&nbsp;<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>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e( 'Edit', 'buddypress' ); ?></a>
    744744
    745745                                        <div id='timestampdiv' class='hide-if-js'>
    746746                                                <?php touch_time( 1, 0, 5 ); ?>
  • src/bp-members/bp-members-admin.php

     
    992992                                                $datef = __( 'M j, Y @ G:i', 'buddypress' );
    993993                                                $date  = date_i18n( $datef, strtotime( $user->user_registered ) );
    994994                                                ?>
    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>
    996996                                        </div>
    997997                                </div> <!-- #misc-publishing-actions -->
    998998