Skip to:
Content

BuddyPress.org

Changeset 3195


Ignore:
Timestamp:
08/17/2010 12:28:32 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Support for deprecated is_site_admin function (mostly for dependent plugins or pre 3.0 setups)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-core/bp-core-wpabstraction.php

    r3192 r3195  
    122122    }
    123123}
     124
     125// Deprecated - 1.2.6
     126if ( !function_exists( 'is_site_admin' ) ) {
     127    function is_site_admin( $user_id = false ) {
     128        return is_super_admin( $user_id );
     129    }
     130}
     131
     132?>
Note: See TracChangeset for help on using the changeset viewer.