Changeset 1210
- Timestamp:
- 03/16/2009 10:54:07 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 3 copied
- 1 moved
-
bp-core.php (modified) (1 diff)
-
bp-core/bp-core-catchuri.php (modified) (1 diff)
-
bp-themes (moved) (moved from trunk/buddypress-theme)
-
bp-themes/buddypress-home (copied) (copied from trunk/buddypress-theme/buddypress-home)
-
bp-themes/member-themes (copied) (copied from trunk/buddypress-theme/member-themes)
-
bp-themes/readme.txt (copied) (copied from trunk/buddypress-theme/readme.txt)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core.php
r1209 r1210 1201 1201 1202 1202 function 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" ); 1204 1204 } 1205 1205 1206 1206 function 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' ); 1208 1208 } 1209 1209 -
trunk/bp-core/bp-core-catchuri.php
r1171 r1210 209 209 load_template( TEMPLATEPATH . "/404.php" ); 210 210 } 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/' ) ); 212 212 } 213 213 }
Note: See TracChangeset
for help on using the changeset viewer.