Changeset 6291
- Timestamp:
- 09/03/2012 01:33:13 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
bp-core/bp-core-catchuri.php (modified) (2 diffs)
-
bp-groups/bp-groups-actions.php (modified) (1 diff)
-
bp-xprofile/bp-xprofile-actions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-catchuri.php
r6290 r6291 331 331 332 332 /** 333 * bp_core_load_template()334 *335 333 * Load a specific template file with fallback support. 336 334 * … … 746 744 } 747 745 add_action( 'wp_head', '_bp_maybe_remove_rel_canonical', 8 ); 748 ?> -
trunk/bp-groups/bp-groups-actions.php
r6107 r6291 197 197 } 198 198 199 bp_core_load_template( apply_filters( 'groups_template_create_group', 'groups/create' ) );199 bp_core_load_template( apply_filters( 'groups_template_create_group', 'groups/create' ) ); 200 200 } 201 201 add_action( 'bp_actions', 'groups_action_create_group' ); -
trunk/bp-xprofile/bp-xprofile-actions.php
r5699 r6291 24 24 * @uses bp_core_delete_avatar() Deletes the active avatar for the logged in user. 25 25 * @uses add_action() Runs a specific function for an action when it fires. 26 * @uses bp_core_load_template() Looks for and loads a template file within the current member theme (folder/filename)27 26 */ 28 27 function xprofile_action_delete_avatar() { … … 45 44 } 46 45 add_action( 'bp_actions', 'xprofile_action_delete_avatar' ); 47 48 ?>
Note: See TracChangeset
for help on using the changeset viewer.