Skip to:
Content

BuddyPress.org

Ticket #6289: 6289-01.patch

File 6289-01.patch, 1.9 KB (added by hnla, 10 years ago)
  • src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php

     
    33                <thead>
    44                        <tr>
    55                                <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>
    77                                <th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th>
    88                                <th class="date"><?php _e( 'Date Received', 'buddypress' ); ?></th>
    99                                <th class="actions"><?php _e( 'Actions',    'buddypress' ); ?></th>
     
    1616
    1717                                <tr>
    1818                                        <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>
    2323                                </tr>
    2424
    2525                        <?php endwhile; ?>