Changeset 47808 for trunk/src/wp-includes/bookmark-template.php
- Timestamp:
- 05/16/2020 06:40:52 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark-template.php
r47219 r47808 84 84 85 85 if ( $parsed_args['show_updated'] ) { 86 if ( '00' != substr( $bookmark->link_updated_f, 0, 2 ) ) {86 if ( '00' !== substr( $bookmark->link_updated_f, 0, 2 ) ) { 87 87 $title .= ' ('; 88 88 $title .= sprintf( … … 99 99 $alt = ' alt="' . $name . ( $parsed_args['show_description'] ? ' ' . $title : '' ) . '"'; 100 100 101 if ( '' != $title ) {101 if ( '' !== $title ) { 102 102 $title = ' title="' . $title . '"'; 103 103 } 104 104 $rel = $bookmark->link_rel; 105 if ( '' != $rel ) {105 if ( '' !== $rel ) { 106 106 $rel = ' rel="' . esc_attr( $rel ) . '"'; 107 107 } 108 108 $target = $bookmark->link_target; 109 if ( '' != $target ) {109 if ( '' !== $target ) { 110 110 $target = ' target="' . $target . '"'; 111 111 } … … 135 135 } 136 136 137 if ( $parsed_args['show_description'] && '' != $desc ) {137 if ( $parsed_args['show_description'] && '' !== $desc ) { 138 138 $output .= $parsed_args['between'] . $desc; 139 139 }
Note: See TracChangeset
for help on using the changeset viewer.