Skip to:
Content

BuddyPress.org

Changeset 1303 for trunk/bp-friends.php


Ignore:
Timestamp:
04/03/2009 12:57:45 PM (15 years ago)
Author:
apeatling
Message:

Making the switch to WPMU 2.7.1+ support only. BuddyPress will now ONLY run in /plugins/ and not /mu-plugins/.

You should install all BuddyPress component plugin files in /wp-content/plugins/buddypress/ however you can call the "buddypress" dir anything you like. BuddyPress plugins can then be activated and deactivated through the "Plugins" admin panel.

If you are upgrading to this version please move all BuddyPress plugins to the location mentioned above and then update. You will also need to make sure your themes reference the new locations. There are two constants you should use "BP_PLUGIN_DIR" and "BP_PLUGIN_URL". You will need to re-activate the plugins via the "Plugins" admin panel.

Again, from now on BuddyPress will ONLY work with WPMU 2.7.1+ so please use the 2.7 branch from the WordPress MU SVN repo. Link: http://trac.mu.wordpress.org/browser/branches/2.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-friends.php

    r1290 r1303  
    55Description: Allows the creation of friend connections between users.
    66Author: BuddyPress
    7 Version: 1.0-RC1
     7Version: 1.0-RC2
    88Author URI: http://buddypress.org
    99Site Wide Only: true
     
    1313
    1414define ( 'BP_FRIENDS_IS_INSTALLED', 1 );
    15 define ( 'BP_FRIENDS_VERSION', '1.0-RC1' );
    16 define ( 'BP_FRIENDS_DB_VERSION', '937' );
     15define ( 'BP_FRIENDS_VERSION', '1.0-RC2' );
     16define ( 'BP_FRIENDS_DB_VERSION', '1300' );
    1717
    1818/* Define the slug for the component */
     
    6767   
    6868    $bp->friends->table_name = $wpdb->base_prefix . 'bp_friends';
    69     $bp->friends->image_base = WPMU_PLUGIN_URL . '/bp-friends/images';
     69    $bp->friends->image_base = BP_PLUGIN_URL . '/bp-friends/images';
    7070    $bp->friends->format_activity_function = 'friends_format_activity';
    7171    $bp->friends->format_notification_function = 'friends_format_notifications';
Note: See TracChangeset for help on using the changeset viewer.