Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/23/2016 02:22:10 PM (9 years ago)
Author:
boonebgorges
Message:

Remove markup from translatable strings on admin screens.

Props ramiy.
Fixes #6911.

File:
1 edited

Legend:

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

    r10672 r10673  
    628628
    629629        <?php else : ?>
    630             <p><?php printf( __( 'No group found with this ID. <a href="%s">Go back and try again</a>.', 'buddypress' ), esc_url( bp_get_admin_url( 'admin.php?page=bp-groups' ) ) ); ?></p>
     630
     631            <p><?php
     632                printf(
     633                    '%1$s <a href="%2$s">%3$s</a>',
     634                    __( 'No group found with this ID.', 'buddypress' ),
     635                    esc_url( bp_get_admin_url( 'admin.php?page=bp-groups' ) ),
     636                    __( 'Go back and try again.', 'buddypress' )
     637                );
     638            ?></p>
     639
    631640        <?php endif; ?>
    632641
Note: See TracChangeset for help on using the changeset viewer.