Make WordPress Core


Ignore:
Timestamp:
01/13/2025 02:55:09 PM (15 months ago)
Author:
desrosj
Message:

Coding Standards: Add missing space for self-closing tags.

Props laxman-prajapati, sabernhardt.
Fixes #62799.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/widgets.php

    r58200 r59600  
    17471747        <label for="rss-show-author-<?php echo $esc_number; ?>"><?php _e( 'Display item author if available?' ); ?></label><br />
    17481748    <?php endif; if ( $inputs['show_date'] ) : ?>
    1749         <input id="rss-show-date-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_date]" type="checkbox" value="1" <?php checked( $args['show_date'] ); ?>/>
     1749        <input id="rss-show-date-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_date]" type="checkbox" value="1" <?php checked( $args['show_date'] ); ?> />
    17501750        <label for="rss-show-date-<?php echo $esc_number; ?>"><?php _e( 'Display item date?' ); ?></label><br />
    17511751    <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.