Skip to:
Content

BuddyPress.org

Ticket #5652: 5652.02.patch

File 5652.02.patch, 1.0 KB (added by imath, 10 years ago)
  • src/bp-loader.php

    diff --git src/bp-loader.php src/bp-loader.php
    index e73cbf9..9e6461d 100644
    class BuddyPress { 
    259259                                        $plugins = get_site_option( 'active_sitewide_plugins');
    260260
    261261                                        // basename
    262                                         $basename = basename( constant( 'BP_PLUGIN_DIR' ) ) . '/bp-loader.php';
     262                                        $basename = plugin_basename( constant( 'BP_PLUGIN_DIR' ) . '/bp-loader.php' );
    263263
    264264                                        // plugin is network-activated; use main site ID instead
    265265                                        if ( isset( $plugins[ $basename ] ) ) {
    class BuddyPress { 
    358358
    359359                // BuddyPress root directory
    360360                $this->file           = constant( 'BP_PLUGIN_DIR' ) . 'bp-loader.php';
    361                 $this->basename       = basename( constant( 'BP_PLUGIN_DIR' ) ) . '/bp-loader.php';
     361                $this->basename       = plugin_basename( constant( 'BP_PLUGIN_DIR' ) . '/bp-loader.php' );
    362362                $this->plugin_dir     = trailingslashit( constant( 'BP_PLUGIN_DIR' ) . constant( 'BP_SOURCE_SUBDIRECTORY' ) );
    363363                $this->plugin_url     = trailingslashit( constant( 'BP_PLUGIN_URL' ) . constant( 'BP_SOURCE_SUBDIRECTORY' ) );
    364364