Ticket #6289: 6289-02.patch
File 6289-02.patch, 3.4 KB (added by , 10 years ago) |
---|
-
src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php
24 24 25 25 <thead> 26 26 <tr> 27 <th scope="col" class="thread-checkbox "><label class="bp-screen-reader-text" for="select-all-messages"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-messages" type="checkbox"></th>27 <th scope="col" class="thread-checkbox bulk-select-all"><label class="bp-screen-reader-text" for="select-all-messages"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-messages" type="checkbox"></th> 28 28 <th scope="col" class="thread-from"><?php _e( 'From', 'buddypress' ); ?></th> 29 29 <th scope="col" class="thread-info"><?php _e( 'Subject', 'buddypress' ); ?></th> 30 30 <th scope="col" class="thread-options"><?php _e( 'Actions', 'buddypress' ); ?></th> … … 36 36 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 37 37 38 38 <tr id="m-<?php bp_message_thread_id(); ?>" class="<?php bp_message_css_class(); ?><?php if ( bp_message_thread_has_unread() ) : ?> unread<?php else: ?> read<?php endif; ?>"> 39 <td >39 <td class="bulk-select-check"> 40 40 <input type="checkbox" name="message_ids[]" class="message-check" value="<?php bp_message_thread_id(); ?>" /> 41 41 </td> 42 42 -
src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
3 3 <thead> 4 4 <tr> 5 5 <th class="icon"></th> 6 <th ><label class="bp-screen-reader-text" for="select-all-notifications"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-notifications" type="checkbox"></th>6 <th class="bulk-select-all"><label class="bp-screen-reader-text" for="select-all-notifications"><?php _e( 'Select all', 'buddypress' ); ?></label><input id="select-all-notifications" type="checkbox"></th> 7 7 <th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th> 8 8 <th class="date"><?php _e( 'Date Received', 'buddypress' ); ?></th> 9 9 <th class="actions"><?php _e( 'Actions', 'buddypress' ); ?></th> … … 16 16 17 17 <tr> 18 18 <td></td> 19 <td ><input id="<?php bp_the_notification_id(); ?>" type="checkbox" name="notifications[]" value="<?php bp_the_notification_id(); ?>" class="notification-check"></td>20 <td ><?php bp_the_notification_description(); ?></td>21 <td ><?php bp_the_notification_time_since(); ?></td>22 <td ><?php bp_the_notification_action_links(); ?></td>19 <td class="bulk-select-check"><input id="<?php bp_the_notification_id(); ?>" type="checkbox" name="notifications[]" value="<?php bp_the_notification_id(); ?>" class="notification-check"></td> 20 <td class="notification-descrip"><?php bp_the_notification_description(); ?></td> 21 <td class="notification-since"><?php bp_the_notification_time_since(); ?></td> 22 <td class="notification-actions"><?php bp_the_notification_action_links(); ?></td> 23 23 </tr> 24 24 25 25 <?php endwhile; ?>