Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/15/2010 11:59:28 AM (16 years ago)
Author:
apeatling
Message:

Fixed incorrect echo on bp_root_domain() calls. Fixed #1288. Added warning to theme headers about copying themes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-wpabstraction.php

    r2299 r2302  
    4747    function update_site_option( $option_name, $option_value ) {
    4848        return update_option( $option_name, $option_value );
     49    }
     50}
     51
     52if ( !function_exists( 'delete_site_option' ) ) {
     53    function delete_site_option( $option_name ) {
     54        return delete_option( $option_name );
    4955    }
    5056}
Note: See TracChangeset for help on using the changeset viewer.