Changeset 41686 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 10/02/2017 10:01:23 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-comment-query.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r41287 r41686 324 324 * @since 4.2.0 325 325 * 326 * @param WP_Comment_Query &$this The WP_Comment_Query instance (passed by reference).326 * @param WP_Comment_Query $this The WP_Comment_Query instance (passed by reference). 327 327 */ 328 328 do_action_ref_array( 'parse_comment_query', array( &$this ) ); … … 370 370 * @since 3.1.0 371 371 * 372 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference.372 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference). 373 373 */ 374 374 do_action_ref_array( 'pre_get_comments', array( &$this ) ); … … 451 451 * 452 452 * @param array $_comments An array of comments. 453 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference.453 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference). 454 454 */ 455 455 $_comments = apply_filters_ref_array( 'the_comments', array( $_comments, &$this ) ); … … 849 849 * 850 850 * @param array $pieces A compacted array of comment query clauses. 851 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference.851 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference). 852 852 */ 853 853 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) );
Note: See TracChangeset
for help on using the changeset viewer.