Changeset 13820 for trunk/src/bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php
- Timestamp:
- 04/28/2024 10:08:00 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php
r13193 r13820 31 31 <li class="member-entry clearfix"> 32 32 33 <?php echo bp_core_fetch_avatar( array( 'item_id' => bp_get_member_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30, 'alt' => '' ) ); ?> 33 <?php 34 // phpcs:ignore WordPress.Security.EscapeOutput 35 echo bp_core_fetch_avatar( array( 'item_id' => bp_get_member_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30, 'alt' => '' ) ); 36 ?> 34 37 <p class="list-title member-name"> 35 38 <a href="<?php bp_member_permalink(); ?>"> <?php bp_member_name(); ?></a> … … 62 65 <li class="members-entry clearfix"> 63 66 64 <?php echo bp_core_fetch_avatar( array( 'item_id' => bp_get_member_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30, 'alt' => '' ) ); ?> 67 <?php 68 // phpcs:ignore WordPress.Security.EscapeOutput 69 echo bp_core_fetch_avatar( array( 'item_id' => bp_get_member_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30, 'alt' => '' ) ); 70 ?> 65 71 <p class="list-title member-name"> 66 72 <a href="<?php bp_member_permalink(); ?>"> <?php bp_member_name(); ?></a>
Note: See TracChangeset
for help on using the changeset viewer.