Changeset 4958
- Timestamp:
- 05/27/2013 08:17:22 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/users/template-tags.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/users/template-tags.php
r4948 r4958 931 931 932 932 <div class="bbp-template-notice updated"> 933 <p><?php _e( 'User updated.', 'bbpress' ); ?></p>933 <p><?php esc_html_e( 'User updated.', 'bbpress' ); ?></p> 934 934 </div> 935 935 … … 956 956 957 957 <div class="bbp-template-notice important"> 958 <p><?php bbp_is_user_home() || bbp_is_user_home_edit() ? _e( 'You have super admin privileges.', 'bbpress' ) :_e( 'This user has super admin privileges.', 'bbpress' ); ?></p>958 <p><?php bbp_is_user_home() || bbp_is_user_home_edit() ? esc_html_e( 'You have super admin privileges.', 'bbpress' ) : esc_html_e( 'This user has super admin privileges.', 'bbpress' ); ?></p> 959 959 </div> 960 960 … … 1021 1021 1022 1022 <select name="role" id="role"> 1023 <option value=""><?php _e( '— No role for this site —', 'bbpress' ); ?></option>1023 <option value=""><?php esc_html_e( '— No role for this site —', 'bbpress' ); ?></option> 1024 1024 1025 1025 <?php foreach ( get_editable_roles() as $role => $details ) : ?> … … 1056 1056 1057 1057 <select name="bbp-forums-role" id="bbp-forums-role"> 1058 <option value=""><?php _e( '— No role for these forums —', 'bbpress' ); ?></option>1058 <option value=""><?php esc_html_e( '— No role for these forums —', 'bbpress' ); ?></option> 1059 1059 1060 1060 <?php foreach ( $dynamic_roles as $role => $details ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.