Changeset 13844 for trunk/src/bp-groups/bp-groups-template.php
- Timestamp:
- 05/02/2024 12:43:50 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-template.php
r13808 r13844 17 17 */ 18 18 function bp_groups_slug() { 19 echo esc_ url( bp_get_groups_slug() );19 echo esc_attr( bp_get_groups_slug() ); 20 20 } 21 21 /** … … 44 44 */ 45 45 function bp_groups_root_slug() { 46 echo esc_ url( bp_get_groups_root_slug() );46 echo esc_attr( bp_get_groups_root_slug() ); 47 47 } 48 48 /** … … 71 71 */ 72 72 function bp_groups_group_type_base() { 73 echo esc_ url( bp_get_groups_group_type_base() );73 echo esc_attr( bp_get_groups_group_type_base() ); 74 74 } 75 75 /** … … 1431 1431 */ 1432 1432 function bp_group_slug( $group = false ) { 1433 echo esc_ url( bp_get_group_slug( $group ) );1433 echo esc_attr( bp_get_group_slug( $group ) ); 1434 1434 } 1435 1435 /** … … 4510 4510 */ 4511 4511 function bp_group_pag_id() { 4512 echo esc_ url( bp_get_group_pag_id() );4512 echo esc_attr( bp_get_group_pag_id() ); 4513 4513 } 4514 4514 /** … … 6487 6487 */ 6488 6488 function bp_current_group_slug() { 6489 echo esc_ url( bp_get_current_group_slug() );6489 echo esc_attr( bp_get_current_group_slug() ); 6490 6490 } 6491 6491 /**
Note: See TracChangeset
for help on using the changeset viewer.