Changeset 10323 for trunk/src/bp-friends/bp-friends-screens.php
- Timestamp:
- 11/02/2015 02:07:44 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-friends/bp-friends-screens.php
r10147 r10323 41 41 function friends_screen_requests() { 42 42 if ( bp_is_action_variable( 'accept', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) { 43 // Check the nonce 43 // Check the nonce. 44 44 check_admin_referer( 'friends_accept_friendship' ); 45 45 … … 52 52 53 53 } elseif ( bp_is_action_variable( 'reject', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) { 54 // Check the nonce 54 // Check the nonce. 55 55 check_admin_referer( 'friends_reject_friendship' ); 56 56 … … 63 63 64 64 } elseif ( bp_is_action_variable( 'cancel', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) { 65 // Check the nonce 65 // Check the nonce. 66 66 check_admin_referer( 'friends_withdraw_friendship' ); 67 67
Note: See TracChangeset
for help on using the changeset viewer.