Make WordPress Core

Ticket #13678: 13678-minor-whitespace-cleanup.diff

File 13678-minor-whitespace-cleanup.diff, 815 bytes (added by zeo, 16 years ago)

Minor whitespace cleanup within <a>

  • wp-includes/default-widgets.php

     
    549549                <?php if ( $title ) echo $before_title . $title . $after_title; ?>
    550550                <ul>
    551551                <?php  while ($r->have_posts()) : $r->the_post(); ?>
    552                 <li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li>
     552                <li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
    553553                <?php endwhile; ?>
    554554                </ul>
    555555                <?php echo $after_widget; ?>