Ticket #6531: 6531-notifications.2.patch
File 6531-notifications.2.patch, 2.0 KB (added by , 10 years ago) |
---|
-
src/bp-notifications/bp-notifications-template.php
1249 1249 } ?> 1250 1250 1251 1251 <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> 1253 1253 1254 1254 <select id="notifications-sort-order-list" name="sort_order" onchange="this.form.submit();"> 1255 1255 <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
16 16 17 17 <tr> 18 18 <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> 20 20 <td class="notification-description"><?php bp_the_notification_description(); ?></td> 21 21 <td class="notification-since"><?php bp_the_notification_time_since(); ?></td> 22 22 <td class="notification-actions"><?php bp_the_notification_action_links(); ?></td>