Changeset 4353
- Timestamp:
- 11/07/2012 08:57:22 AM (12 years ago)
- Location:
- trunk/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/forums/capabilities.php
r4349 r4353 63 63 case 'read_forum' : 64 64 65 // User cannot participate65 // User cannot spectate 66 66 if ( ! user_can( $user_id, 'spectate' ) ) { 67 67 $caps = array( 'do_not_allow' ); -
trunk/includes/replies/capabilities.php
r4349 r4353 52 52 case 'read_reply' : 53 53 54 // User cannot participate54 // User cannot spectate 55 55 if ( ! user_can( $user_id, 'spectate' ) ) { 56 56 $caps = array( 'do_not_allow' ); -
trunk/includes/topics/capabilities.php
r4349 r4353 70 70 case 'read_topic' : 71 71 72 // User cannot participate72 // User cannot spectate 73 73 if ( ! user_can( $user_id, 'spectate' ) ) { 74 74 $caps = array( 'do_not_allow' );
Note: See TracChangeset
for help on using the changeset viewer.