- Timestamp:
- 04/28/2024 10:08:00 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/groups/template-tags.php
r13645 r13820 436 436 printf( 437 437 '<form action="%s" method="post" enctype="multipart/form-data">', 438 bp_get_group_creation_form_action()438 esc_url( bp_get_group_creation_form_action() ) 439 439 ); 440 440 } … … 449 449 ); 450 450 451 // The submit actions451 // phpcs:ignore WordPress.Security.EscapeOutput 452 452 echo $output; 453 453 … … 1089 1089 1090 1090 if ( ! bp_is_group() ) { 1091 // phpcs:ignore WordPress.Security.EscapeOutput 1091 1092 echo $group_meta->meta; 1092 1093 } else { … … 1139 1140 } 1140 1141 1142 // phpcs:ignore WordPress.Security.EscapeOutput 1141 1143 echo $meta; 1142 1144 } … … 1365 1367 * Defaults to the group currently being iterated on in the groups loop. 1366 1368 * @param int $length Optional. Length of returned string, including ellipsis. Default: 100. 1367 *1368 * @return string Excerpt.1369 1369 */ 1370 1370 function bp_nouveau_group_description_excerpt( $group = null, $length = null ) { 1371 echo bp_nouveau_get_group_description_excerpt( $group, $length ); 1371 // Escaping is made in `bp-groups/bp-groups-filters.php`. 1372 // phpcs:ignore WordPress.Security.EscapeOutput 1373 echo apply_filters( 1374 /** This filter is documented in bp-groups/bp-groups-template.php. */ 1375 'bp_get_group_description_excerpt', 1376 bp_nouveau_get_group_description_excerpt( $group, $length ) 1377 ); 1372 1378 } 1373 1379
Note: See TracChangeset
for help on using the changeset viewer.