Changeset 12546 for trunk/src/bp-core/bp-core-template.php
- Timestamp:
- 01/29/2020 09:19:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-template.php
r12517 r12546 153 153 * 154 154 * @param string $title Text to be used in <title> tag. 155 * @param string $component Current compone t being displayed.155 * @param string $component Current component being displayed. 156 156 */ 157 157 return apply_filters( 'bp_get_directory_title', $title, $component ); … … 353 353 * 354 354 * This function can be used to turn a UNIX timestamp into a properly formatted 355 * (and possibly localized) string, use rful for ouputting the date & time an355 * (and possibly localized) string, useful for outputting the date & time an 356 356 * action took place. 357 357 * … … 1220 1220 * @since 1.7.0 1221 1221 * 1222 * @param string $subject Client friend y version of the root blog name.1222 * @param string $subject Client friendly version of the root blog name. 1223 1223 * @param array $r Array of arguments for the email subject. 1224 1224 */ … … 1249 1249 1250 1250 /** 1251 * Filters the template parame nters to be used in the query string.1251 * Filters the template parameters to be used in the query string. 1252 1252 * 1253 1253 * Allows templates to pass parameters into the template loops via AJAX. … … 3017 3017 } 3018 3018 3019 // Now we can build the BP Title Parts 3019 // Now we can build the BP Title Parts. 3020 3020 // Is there a displayed user, and do they have a name? 3021 3021 $displayed_user_name = bp_get_displayed_user_fullname(); … … 3620 3620 } 3621 3621 3622 // Saniti se values for class and ID.3622 // Sanitize values for class and ID. 3623 3623 $args->container_class = sanitize_html_class( $args->container_class ); 3624 3624 $args->container_id = sanitize_html_class( $args->container_id );
Note: See TracChangeset
for help on using the changeset viewer.