Changeset 13856
- Timestamp:
- 05/08/2024 07:51:37 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-members-admin.php
r13799 r13856 55 55 56 56 /** 57 * Support forum link. 58 * 59 * @since 14.0.0 60 * @var string 61 */ 62 private $bp_forum = ''; 63 64 /** 57 65 * Redirect. 58 66 * … … 256 264 $this->capability = 'manage_network_users'; 257 265 } 266 267 // Support forum link. 268 $this->bp_forum = sprintf( 269 '<a href="%1$s">%2$s</a>', 270 esc_url( 'https://buddypress.org/support/' ), 271 esc_html__( 'Support Forums', 'buddypress' ) 272 ); 258 273 259 274 /* … … 1879 1894 ) ); 1880 1895 1896 $manage_pending_ua = sprintf( 1897 '<a href="%1$s">%2$s</a>', 1898 esc_url( 'https://github.com/buddypress/buddypress/blob/master/docs/user/administration/users/signups.md#manage-pending-user-accounts' ), 1899 esc_html__( 'Managing Pending User Accounts', 'buddypress' ) 1900 ); 1901 1881 1902 // Help panel - sidebar links. 1882 1903 get_current_screen()->set_help_sidebar( 1883 1904 '<p><strong>' . esc_html__( 'For more information:', 'buddypress' ) . '</strong></p>' . 1884 '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>' 1905 '<p>' . $manage_pending_ua . '</p>' . 1906 '<p>' . $this->bp_forum . '</p>' 1885 1907 ); 1886 1908
Note: See TracChangeset
for help on using the changeset viewer.