Changeset 59860
- Timestamp:
- 02/23/2025 05:13:30 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r59852 r59860 1067 1067 1068 1068 // Find this comment's top-level parent if threading is enabled. 1069 if ( $args['max_depth'] > 1 && 0 != $comment->comment_parent ) {1069 if ( $args['max_depth'] > 1 && '0' !== $comment->comment_parent ) { 1070 1070 return get_page_of_comment( $comment->comment_parent, $args ); 1071 1071 } … … 1127 1127 1128 1128 // No older comments? Then it's page #1. 1129 if ( 0 == $older_comment_count ) {1129 if ( 0 === $older_comment_count ) { 1130 1130 $page = 1; 1131 1131
Note: See TracChangeset
for help on using the changeset viewer.