Changeset 1866
- Timestamp:
- 09/14/2009 05:53:21 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-templatetags.php
r1844 r1866 120 120 $bp_activity_no_activity = $no_activity; 121 121 122 lo ad_template( TEMPLATEPATH . '/activity/activity-list.php');122 locate_template( array( '/activity/activity-list.php' ), true ); 123 123 } 124 124 -
trunk/bp-core/bp-core-templatetags.php
r1855 r1866 385 385 386 386 function bp_get_profile_header() { 387 lo ad_template( TEMPLATEPATH . '/profile/profile-header.php');387 locate_template( array( '/profile/profile-header.php' ), true ); 388 388 } 389 389 … … 453 453 454 454 function bp_get_plugin_sidebar() { 455 if ( file_exists(TEMPLATEPATH . '/plugin-sidebar.php' ) )456 lo ad_template( TEMPLATEPATH . '/plugin-sidebar.php');455 if ( file_exists(TEMPLATEPATH . '/plugin-sidebar.php' ) ) 456 locate_template( array( '/plugin-sidebar.php' ), true ); 457 457 } 458 458 -
trunk/bp-wire/bp-wire-templatetags.php
r1844 r1866 152 152 $bp_wire_show_email_notify = $show_email_notify; 153 153 154 lo ad_template( TEMPLATEPATH . '/wire/post-list.php');154 locate_template( array( '/wire/post-list.php' ), true ); 155 155 } 156 156 … … 298 298 299 299 if ( is_user_logged_in() && $wire_posts_template->can_post ) 300 lo ad_template( TEMPLATEPATH . '/wire/post-form.php' );300 locate_template( array( '/wire/post-form.php' ), true ); 301 301 } 302 302
Note: See TracChangeset
for help on using the changeset viewer.