Changeset 12546
- Timestamp:
- 01/29/2020 09:19:27 PM (5 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-template-loader.php
r12281 r12546 98 98 function bp_locate_template( $template_names, $load = false, $require_once = true ) { 99 99 100 // Bail when there are no templates to locate 100 // Bail when there are no templates to locate. 101 101 if ( empty( $template_names ) ) { 102 102 return false; … … 136 136 /** 137 137 * This action exists only to follow the standard BuddyPress coding convention, 138 * and should not be used to short-circuit any part of the template locat or.138 * and should not be used to short-circuit any part of the template locater. 139 139 * 140 140 * If you want to override a specific template part, please either filter -
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 ); -
trunk/src/bp-core/bp-core-theme-compatibility.php
r12281 r12546 190 190 * not been updated for BP 1.7+; we make the assumption that any theme in 191 191 * this category will have the members-loop.php template, and so use its 192 * presence as an indicator that theme compatibility is not required 192 * presence as an indicator that theme compatibility is not required. 193 193 * 194 194 * @since 1.9.0 … … 433 433 * content width for the concerned themes. 434 434 * 435 * Example: array( stylesheet => content width used by BuddyPress ) 435 * Example: array( stylesheet => content width used by BuddyPress ). 436 436 */ 437 437 $bp_content_widths = array( … … 946 946 * @since 1.9.2 947 947 * 948 * @param string $retval The current post content.948 * @param string $retval The current post content. 949 949 * @return string $retval 950 950 */
Note: See TracChangeset
for help on using the changeset viewer.