Changeset 41215
- Timestamp:
- 08/03/2017 02:33:19 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r40130 r41215 218 218 * 219 219 * @param array $fallback_sizes An array of image size names. 220 * @param array $metadata Current attachment metadata. 220 221 */ 221 222 $fallback_sizes = apply_filters( 'fallback_intermediate_image_sizes', $fallback_sizes, $metadata ); -
trunk/src/wp-includes/class-wp-comment-query.php
r41190 r41215 446 446 * @since 3.1.0 447 447 * 448 * @param array $ resultsAn array of comments.449 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference.448 * @param array $_comments An array of comments. 449 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference. 450 450 */ 451 451 $_comments = apply_filters_ref_array( 'the_comments', array( $_comments, &$this ) ); -
trunk/src/wp-includes/class-wp-network-query.php
r41162 r41215 259 259 * @since 4.6.0 260 260 * 261 * @param array $ results An array of networks.262 * @param WP_Network_Query &$this Current instance of WP_Network_Query, passed by reference.261 * @param array $_networks An array of WP_Network objects. 262 * @param WP_Network_Query &$this Current instance of WP_Network_Query, passed by reference. 263 263 */ 264 264 $_networks = apply_filters_ref_array( 'the_networks', array( $_networks, &$this ) ); -
trunk/src/wp-includes/class-wp-site-query.php
r41162 r41215 303 303 * @since 4.6.0 304 304 * 305 * @param array $ results An array of sites.306 * @param WP_Site_Query &$this 305 * @param array $_sites An array of WP_Site objects. 306 * @param WP_Site_Query &$this Current instance of WP_Site_Query, passed by reference. 307 307 */ 308 308 $_sites = apply_filters_ref_array( 'the_sites', array( $_sites, &$this ) );
Note: See TracChangeset
for help on using the changeset viewer.