Changeset 4290
- Timestamp:
- 10/04/2006 03:50:14 AM (18 years ago)
- Location:
- branches/2.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/menu.php
r3185 r4290 56 56 57 57 do_action('admin_menu', ''); 58 ksort($menu); // make it all pretty58 uksort($menu, "strnatcasecmp"); // make it all pretty 59 59 60 60 if (! user_can_access_admin_page()) { -
branches/2.0/wp-admin/users.php
r3937 r4290 207 207 <?php 208 208 foreach($roleclasses as $role => $roleclass) { 209 ksort($roleclass);209 uksort($roleclass, "strnatcasecmp"); 210 210 ?> 211 211 -
branches/2.0/wp-includes/functions.php
r4231 r4290 1194 1194 1195 1195 if ( isset($wp_filter[$tag]) ) 1196 ksort( $wp_filter[$tag]);1196 uksort( $wp_filter[$tag], "strnatcasecmp" ); 1197 1197 } 1198 1198
Note: See TracChangeset
for help on using the changeset viewer.