Ticket #6911: 6911.patch
File 6911.patch, 2.3 KB (added by , 9 years ago) |
---|
-
src/bp-activity/bp-activity-admin.php
707 707 </form> 708 708 709 709 <?php else : ?> 710 710 711 <p> 711 <?php _e( 'No activity found with this ID.', 'buddypress' ); ?> 712 <a href="<?php echo esc_url( bp_get_admin_url( 'admin.php?page=bp-activity' ) ); ?>"><?php _e( 'Go back and try again.', 'buddypress' ); ?></a> 712 <?php 713 _e( 'No activity found with this ID.', 'buddypress' ); 714 printf( 715 ' <a href="%1$s">%2$s</a>', 716 esc_url( bp_get_admin_url( 'admin.php?page=bp-activity' ) ), 717 __( 'Go back and try again.', 'buddypress' ) 718 ); 719 ?> 713 720 </p> 721 714 722 <?php endif; ?> 715 723 716 724 </div><!-- .wrap --> -
src/bp-groups/bp-groups-admin.php
627 627 </form> 628 628 629 629 <?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> 632 <?php 633 _e( 'No group found with this ID.', 'buddypress' ); 634 printf( 635 ' <a href="%1$s">%2$s</a>', 636 esc_url( bp_get_admin_url( 'admin.php?page=bp-groups' ) ), 637 __( 'Go back and try again.', 'buddypress' ) 638 ); 639 ?> 640 </p> 641 631 642 <?php endif; ?> 632 643 633 644 </div><!-- .wrap --> -
src/bp-members/classes/class-bp-members-admin.php
934 934 935 935 <?php else : ?> 936 936 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> 938 <?php 939 _e( 'No user found with this ID.', 'buddypress' ); 940 printf( 941 ' <a href="%1$s">%2$s</a>', 942 esc_url( bp_get_admin_url( 'users.php' ) ), 943 __( 'Go back and try again.', 'buddypress' ) 944 ); 945 ?> 946 </p> 938 947 939 948 <?php endif; ?> 940 949