Pink trailing whites.

git-svn-id: https://develop.svn.wordpress.org/trunk@16900 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2010-12-13 21:21:50 +00:00
parent 2fe23d30da
commit 6dc2d07bc4
35 changed files with 106 additions and 106 deletions
+4 -4
View File
@@ -721,20 +721,20 @@ function revoke_super_admin( $user_id ) {
}
/**
* Whether or not we can edit this network from this page
*
*
* By default editing of network is restricted to the Network Admin for that site_id this allows for this to be overridden
*
*
* @since 3.1.0
* @param integer $site_id The network/site id to check.
*/
function can_edit_network( $site_id ) {
global $wpdb;
if ($site_id == $wpdb->siteid )
$result = true;
else
$result = false;
return apply_filters( 'can_edit_network', $result, $site_id );
}
?>