Changeset 7097 for branches/2.6/src/includes/extend/buddypress/groups.php
- Timestamp:
- 06/04/2020 09:28:24 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/src/includes/extend/buddypress/groups.php
r7059 r7097 377 377 // If everything else has failed, then something is wrong and we need 378 378 // to add an error to prevent this topic from saving. 379 bbp_add_error( 'bbp_topic_forum_id', __( '<strong>E RROR</strong>: Forum ID is invalid.', 'bbpress' ) );379 bbp_add_error( 'bbp_topic_forum_id', __( '<strong>Error</strong>: Forum ID is invalid.', 'bbpress' ) ); 380 380 } 381 381 … … 440 440 441 441 // Add an error to prevent this reply from saving. 442 bbp_add_error( 'bbp_reply_to_id', __( '<strong>E RROR</strong>: Reply To is invalid.', 'bbpress' ) );442 bbp_add_error( 'bbp_reply_to_id', __( '<strong>Error</strong>: Reply To is invalid.', 'bbpress' ) ); 443 443 } 444 444 … … 529 529 // Theme-side Nonce check 530 530 } elseif ( ! bbp_verify_nonce_request( 'groups_edit_save_' . $this->slug ) ) { 531 bbp_add_error( 'bbp_edit_group_forum_screen_save', __( '<strong>E RROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );531 bbp_add_error( 'bbp_edit_group_forum_screen_save', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) ); 532 532 return; 533 533 } … … 686 686 // Nonce check 687 687 if ( ! bbp_verify_nonce_request( 'groups_create_save_' . $this->slug ) ) { 688 bbp_add_error( 'bbp_create_group_forum_screen_save', __( '<strong>E RROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );688 bbp_add_error( 'bbp_create_group_forum_screen_save', __( '<strong>Error</strong>: Are you sure you wanted to do that?', 'bbpress' ) ); 689 689 return; 690 690 }
Note: See TracChangeset
for help on using the changeset viewer.