diff --git src/bp-core/classes/class-bp-admin.php src/bp-core/classes/class-bp-admin.php
index 528e4da6c..5631f1753 100644
|
|
|
class BP_Admin {
|
| 789 | 789 | <?php |
| 790 | 790 | printf( |
| 791 | 791 | '<a class="twitter bp-tooltip" data-bp-tooltip="%1$s" href="%2$s"><span class="screen-reader-text">%3$s</span></a>', |
| 792 | | esc_attr( 'Follow BuddyPress on Twitter', 'buddypress' ), |
| | 792 | esc_attr__( 'Follow BuddyPress on Twitter', 'buddypress' ), |
| 793 | 793 | esc_url( 'https://twitter.com/buddypress' ), |
| 794 | | esc_html( 'Follow BuddyPress on Twitter', 'buddypress' ) |
| | 794 | esc_html__( 'Follow BuddyPress on Twitter', 'buddypress' ) |
| 795 | 795 | ); |
| 796 | 796 | ?> |
| 797 | 797 | </li> |
| … |
… |
class BP_Admin {
|
| 800 | 800 | <?php |
| 801 | 801 | printf( |
| 802 | 802 | '<a class="support bp-tooltip" data-bp-tooltip="%1$s" href="%2$s"><span class="screen-reader-text">%3$s</span></a>', |
| 803 | | esc_attr( 'Visit the Support Forums', 'buddypress' ), |
| | 803 | esc_attr__( 'Visit the Support Forums', 'buddypress' ), |
| 804 | 804 | esc_url( 'https://buddypress.org/support/' ), |
| 805 | | esc_html( 'Visit the Support Forums', 'buddypress' ) |
| | 805 | esc_html__( 'Visit the Support Forums', 'buddypress' ) |
| 806 | 806 | ); |
| 807 | 807 | ?> |
| 808 | 808 | </li> |
diff --git src/bp-templates/bp-nouveau/buddypress/groups/single/request-membership.php src/bp-templates/bp-nouveau/buddypress/groups/single/request-membership.php
index e92cba5b4..ce1d50ff2 100644
|
|
|
bp_nouveau_group_hook( 'before', 'request_membership_content' ); ?>
|
| 22 | 22 | </p> |
| 23 | 23 | |
| 24 | 24 | <form action="<?php bp_group_form_action( 'request-membership' ); ?>" method="post" name="request-membership-form" id="request-membership-form" class="standard-form"> |
| 25 | | <label for="group-request-membership-comments"><?php esc_html( 'Comments (optional)', 'buddypress' ); ?></label> |
| | 25 | <label for="group-request-membership-comments"><?php esc_html_e( 'Comments (optional)', 'buddypress' ); ?></label> |
| 26 | 26 | <textarea name="group-request-membership-comments" id="group-request-membership-comments"></textarea> |
| 27 | 27 | |
| 28 | 28 | <?php bp_nouveau_group_hook( '', 'request_membership_content' ); ?> |