Make WordPress Core

Ticket #43586: 43586.4.diff

File 43586.4.diff, 1.7 KB (added by rhetorical, 7 years ago)
  • src/wp-admin/css/common.css

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index cbae1c5d68..b53fe7c330 100644
    a b body.iframe { 
    23662366        line-height: 1.4;
    23672367        font-weight: 600;
    23682368        color: #222;
    2369         margin: 2px 0 0 9px;
     2369        margin: 0px 0px 0px -10px;
     2370        padding: 2px 0px 8px 22px;
     2371        border-bottom: 1px solid #eee;
     2372        width: 100%
    23702373}
    23712374
    23722375#namediv h3 label, /* Back-compat for pre-4.4 */
  • src/wp-admin/edit-form-comment.php

    diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php
    index e043908c30..24f351a7e7 100644
    a b if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ 
    4141<table class="form-table editcomment">
    4242<tbody>
    4343<tr>
    44         <td class="first"><label for="name"><?php _e( 'Name:' ); ?></label></td>
     44        <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td>
    4545        <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td>
    4646</tr>
    4747<tr>
    48         <td class="first"><label for="email"><?php _e( 'Email:' ); ?></label></td>
     48        <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td>
    4949        <td>
    5050                <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" />
    5151        </td>
    5252</tr>
    5353<tr>
    54         <td class="first"><label for="newcomment_author_url"><?php _e( 'URL:' ); ?></label></td>
     54        <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td>
    5555        <td>
    5656                <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" />
    5757        </td>