Changeset 461
- Timestamp:
- 03/06/2014 05:02:51 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php
r458 r461 267 267 $unblocked_participants = array_diff( $participants, $ticket_subscriptions['blocked'] ); 268 268 $all_receiving_notifications = array_unique( array_merge( $stars, $unblocked_participants ) ); 269 sort( $all_receiving_notifications );269 natcasesort( $all_receiving_notifications ); 270 270 271 271 $reasons = array(); … … 335 335 <div class="star-list"> 336 336 <?php 337 foreach ( $stars as $follower ) :337 natcasesort( $stars ); foreach ( $stars as $follower ) : 338 338 // foreach ( $all_receiving_notifications as $follower ) : 339 339 if ( $username === $follower ) {
Note: See TracChangeset
for help on using the changeset viewer.