Skip to:
Content

BuddyPress.org

Ticket #6531: 6531-notifications.2.patch

File 6531-notifications.2.patch, 2.0 KB (added by mercime, 10 years ago)
  • src/bp-notifications/bp-notifications-template.php

     
    12491249        } ?>
    12501250
    12511251        <form action="" method="get" id="notifications-sort-order">
    1252                 <label for="notifications-friends"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label>
     1252                <label for="notifications-sort-order-list"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label>
    12531253
    12541254                <select id="notifications-sort-order-list" name="sort_order" onchange="this.form.submit();">
    12551255                        <option value="DESC" <?php selected( $selected, 'DESC' ); ?>><?php _e( 'Newest First', 'buddypress' ); ?></option>
  • src/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php

     
    1616
    1717                                <tr>
    1818                                        <td></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>
     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"><label for="<?php bp_the_notification_id(); ?>" class="bp-screen-reader-text"><?php _e( 'Check to select this notification', 'buddypress' ); ?></label></td>
    2020                                        <td class="notification-description"><?php bp_the_notification_description();  ?></td>
    2121                                        <td class="notification-since"><?php bp_the_notification_time_since();   ?></td>
    2222                                        <td class="notification-actions"><?php bp_the_notification_action_links(); ?></td>