Skip to:
Content

BuddyPress.org

Changeset 388 for trunk/bp-core.php


Ignore:
Timestamp:
10/10/2008 11:47:28 PM (17 years ago)
Author:
apeatling
Message:

Fixed issues with 404's on group pages with sub directory installations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core.php

    r375 r388  
    22/* Define the current version number for checking if DB tables are up to date. */
    33define( 'BP_CORE_VERSION', '0.2.5' );
     4
     5/* These components are accessed via the root, and not under a blog name or home base.
     6   e.g Groups is accessed via: http://domain.com/groups/group-name NOT http://domain.com.andy/groups/group-name */
     7define( 'BP_CORE_ROOT_COMPONENTS', 'groups' );
    48
    59/* Require all needed files */
     
    104108        'image_base' => site_url() . '/wp-content/mu-plugins/bp-core/images',
    105109    );
    106 
    107 
     110   
    108111    if ( !$bp['current_component'] )
    109112        $bp['current_component'] = $bp['default_component'];
Note: See TracChangeset for help on using the changeset viewer.