Changeset 55652 for trunk/src/wp-includes/post-template.php
- Timestamp:
- 04/15/2023 12:09:08 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/post-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r55262 r55652 43 43 $title = get_the_title(); 44 44 45 if ( strlen( $title ) == 0 ) {45 if ( strlen( $title ) === 0 ) { 46 46 return; 47 47 } … … 89 89 $title = get_the_title( $parsed_args['post'] ); 90 90 91 if ( strlen( $title ) == 0 ) {91 if ( strlen( $title ) === 0 ) { 92 92 return; 93 93 }
Note: See TracChangeset
for help on using the changeset viewer.