Skip to:
Content

bbPress.org

Changeset 4907


Ignore:
Timestamp:
05/14/2013 11:14:56 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Correct the error ID's used when posting a new reply if the forum is closed, private, or hidden, and the user does not have proper capabilities. (2.3 branch)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/includes/replies/functions.php

    r4905 r4907  
    178178            // Forum is closed and user cannot access
    179179            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' ) );
    181181            }
    182182
     
    184184            if ( bbp_is_forum_private( $forum_id ) ) {
    185185                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' ) );
    187187                }
    188188
     
    190190            } elseif ( bbp_is_forum_hidden( $forum_id ) ) {
    191191                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' ) );
    193193                }
    194194            }
     
    514514            // Forum is closed and user cannot access
    515515            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' ) );
    517517            }
    518518
     
    520520            if ( bbp_is_forum_private( $forum_id ) ) {
    521521                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' ) );
    523523                }
    524524
     
    526526            } elseif ( bbp_is_forum_hidden( $forum_id ) ) {
    527527                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' ) );
    529529                }
    530530            }
Note: See TracChangeset for help on using the changeset viewer.