Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/08/2016 09:06:55 PM (9 years ago)
Author:
imath
Message:

Groups Administration: properly escape the Group name on the Delete confirmation screen

Props slaFFik

Fixes #6815

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/bp-groups-admin.php

    r10520 r10569  
    675675        <ul class="bp-group-delete-list">
    676676        <?php foreach ( $groups['groups'] as $group ) : ?>
    677             <li><?php echo esc_html( $group->name ) ?></li>
     677            <li><?php echo apply_filters( 'bp_get_group_name', $group->name, $group ); ?></li>
    678678        <?php endforeach; ?>
    679679        </ul>
Note: See TracChangeset for help on using the changeset viewer.