Skip to:
Content

BuddyPress.org

Changeset 1210


Ignore:
Timestamp:
03/16/2009 10:54:07 AM (17 years ago)
Author:
apeatling
Message:

renaming buddypress-theme to bp-themes and changing member-themes to bp-themes

Location:
trunk
Files:
2 edited
3 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/bp-core.php

    r1209 r1210  
    12011201
    12021202function bp_core_set_member_theme_root() {
    1203     return WP_CONTENT_DIR . "/member-themes";
     1203    return apply_filters( 'bp_core_set_member_theme_root', WP_CONTENT_DIR . "/bp-themes" );
    12041204}
    12051205
    12061206function bp_core_set_member_theme_root_uri() {
    1207     return WP_CONTENT_URL . '/member-themes';
     1207    return apply_filters( 'bp_core_set_member_theme_root_uri', WP_CONTENT_URL . '/bp-themes' );
    12081208}
    12091209
  • trunk/bp-core/bp-core-catchuri.php

    r1171 r1210  
    209209                load_template( TEMPLATEPATH . "/404.php" );
    210210            } else {
    211                 wp_die( __( '<strong>You do not have any BuddyPress member themes installed.</strong><br />Please download the <a href="http://buddypress.org/download" title="Download">Default Member Theme</a> and install it in /wp-content/member-themes/' ) );
     211                wp_die( __( '<strong>You do not have any BuddyPress themes installed.</strong><br />Please download the <a href="http://buddypress.org/extend/themes" title="Download">Default BuddyPress Theme</a> and install it in /wp-content/buddypress-themes/' ) );
    212212            }
    213213        }
Note: See TracChangeset for help on using the changeset viewer.