- Timestamp:
- 06/02/2023 02:05:08 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-friends/classes/class-bp-friends-component.php
r13481 r13495 86 86 in_array( bp_current_action(), array( 'add-friend', 'remove-friend' ), true ) 87 87 ) { 88 require $this->path . 'bp-friends/actions/' . bp_current_action() . '.php';88 require_once $this->path . 'bp-friends/actions/' . bp_current_action() . '.php'; 89 89 } 90 90 91 91 // User nav. 92 require $this->path . 'bp-friends/screens/my-friends.php';92 require_once $this->path . 'bp-friends/screens/my-friends.php'; 93 93 if ( is_user_logged_in() && bp_is_user_friend_requests() ) { 94 require $this->path . 'bp-friends/screens/requests.php';94 require_once $this->path . 'bp-friends/screens/requests.php'; 95 95 } 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.