Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion network-plugin-auditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Network Plugin Auditor
Plugin URI: http://wordpress.org/support/plugin/network-plugin-auditor
Description: Adds columns to your Network Admin on the Sites, Themes and Plugins pages to show which of your sites have each plugin and theme activated. Now you can easily determine which plugins and themes are used on your network sites and which can be safely removed.
Version: 1.9.1
Version: 1.9.2
Author: Katherine Semel
Author URI: http://bonsaibudget.com/
Network: true
Expand Down Expand Up @@ -318,6 +318,9 @@ static function get_network_blog_list( ) {
}
}

// sort by domain name
uasort( $blog_list, function( $a, $b ) { return ( strcasecmp( $a['domain'], $b['domain'] ) ); } );

//error_log( print_r( $blog_list, true ) );
return $blog_list;
}
Expand Down