Changeset 59796
- Timestamp:
- 02/10/2025 10:49:18 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r59792 r59796 3848 3848 $comment = $this->next_comment(); 3849 3849 3850 if ( 0 == $this->current_comment ) {3850 if ( 0 === $this->current_comment ) { 3851 3851 /** 3852 3852 * Fires once the comment loop is started. … … 3870 3870 if ( $this->current_comment + 1 < $this->comment_count ) { 3871 3871 return true; 3872 } elseif ( $this->current_comment + 1 == $this->comment_count ) {3872 } elseif ( $this->current_comment + 1 === $this->comment_count ) { 3873 3873 $this->rewind_comments(); 3874 3874 }
Note: See TracChangeset
for help on using the changeset viewer.