Make WordPress Core


Ignore:
Timestamp:
12/13/2010 09:21:50 PM (14 years ago)
Author:
ryan
Message:

Pink trailing whites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/ms.php

    r16847 r16900  
    722722/**
    723723 * Whether or not we can edit this network from this page
    724  * 
     724 *
    725725 * By default editing of network is restricted to the Network Admin for that site_id this allows for this to be overridden
    726  * 
     726 *
    727727 * @since 3.1.0
    728728 * @param integer $site_id The network/site id to check.
     
    730730function can_edit_network( $site_id ) {
    731731    global $wpdb;
    732        
     732
    733733    if ($site_id == $wpdb->siteid )
    734734        $result = true;
    735735    else
    736736        $result = false;
    737    
     737
    738738    return apply_filters( 'can_edit_network', $result, $site_id );
    739739}
Note: See TracChangeset for help on using the changeset viewer.