Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/23/2016 02:22:10 PM (10 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-members/classes/class-bp-members-admin.php

    r10652 r10673  
    935935            <?php else : ?>
    936936
    937                 <p><?php printf( __( 'No user found with this ID. <a href="%s">Go back and try again</a>.', 'buddypress' ), esc_url( bp_get_admin_url( 'users.php' ) ) ); ?></p>
     937                <p><?php
     938                    printf(
     939                        '%1$s <a href="%2$s">%3$s</a>',
     940                        __( 'No user found with this ID.', 'buddypress' ),
     941                        esc_url( bp_get_admin_url( 'users.php' ) ),
     942                        __( 'Go back and try again.', 'buddypress' )
     943                    );
     944                ?></p>
    938945
    939946            <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.