Make WordPress Core

Changeset 26273


Ignore:
Timestamp:
11/19/2013 07:34:08 PM (11 years ago)
Author:
nacin
Message:

Remove whitespace from the inside of a <textarea> element, added in [26138] with inline documentation.

see #25662.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r26138 r26273  
    410410        if ( $user_can ) { ?>
    411411        <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
    412         <textarea class="comment" rows="1" cols="1">
    413             <?php
     412        <textarea class="comment" rows="1" cols="1"><?php
    414413            /** This filter is documented in wp-admin/includes/comment.php */
    415414            echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) );
    416             ?>
    417         </textarea>
     415        ?></textarea>
    418416        <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
    419417        <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
Note: See TracChangeset for help on using the changeset viewer.