Changeset 4907
- Timestamp:
- 05/14/2013 11:14:56 PM (13 years ago)
- File:
-
- 1 edited
-
branches/2.3/includes/replies/functions.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.3/includes/replies/functions.php
r4905 r4907 178 178 // Forum is closed and user cannot access 179 179 if ( bbp_is_forum_closed( $forum_id ) && !current_user_can( 'edit_forum', $forum_id ) ) { 180 bbp_add_error( 'bbp_new_ topic_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new replies.', 'bbpress' ) );180 bbp_add_error( 'bbp_new_reply_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new replies.', 'bbpress' ) ); 181 181 } 182 182 … … 184 184 if ( bbp_is_forum_private( $forum_id ) ) { 185 185 if ( !current_user_can( 'read_private_forums' ) ) { 186 bbp_add_error( 'bbp_new_ topic_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new replies in it.', 'bbpress' ) );186 bbp_add_error( 'bbp_new_reply_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new replies in it.', 'bbpress' ) ); 187 187 } 188 188 … … 190 190 } elseif ( bbp_is_forum_hidden( $forum_id ) ) { 191 191 if ( !current_user_can( 'read_hidden_forums' ) ) { 192 bbp_add_error( 'bbp_new_ topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) );192 bbp_add_error( 'bbp_new_reply_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) ); 193 193 } 194 194 } … … 514 514 // Forum is closed and user cannot access 515 515 if ( bbp_is_forum_closed( $forum_id ) && !current_user_can( 'edit_forum', $forum_id ) ) { 516 bbp_add_error( 'bbp_edit_ topic_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new replies.', 'bbpress' ) );516 bbp_add_error( 'bbp_edit_reply_forum_closed', __( '<strong>ERROR</strong>: This forum has been closed to new replies.', 'bbpress' ) ); 517 517 } 518 518 … … 520 520 if ( bbp_is_forum_private( $forum_id ) ) { 521 521 if ( !current_user_can( 'read_private_forums' ) ) { 522 bbp_add_error( 'bbp_edit_ topic_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new replies in it.', 'bbpress' ) );522 bbp_add_error( 'bbp_edit_reply_forum_private', __( '<strong>ERROR</strong>: This forum is private and you do not have the capability to read or create new replies in it.', 'bbpress' ) ); 523 523 } 524 524 … … 526 526 } elseif ( bbp_is_forum_hidden( $forum_id ) ) { 527 527 if ( !current_user_can( 'read_hidden_forums' ) ) { 528 bbp_add_error( 'bbp_edit_ topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) );528 bbp_add_error( 'bbp_edit_reply_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) ); 529 529 } 530 530 }
Note: See TracChangeset
for help on using the changeset viewer.