Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8/src/wp-includes/post-template.php

    r25868 r27877  
    12491249    $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post">
    12501250    <p>' . __( 'This content is password protected. To view it please enter your password below:' ) . '</p>
    1251     <p><label for="' . $label . '">' . __( 'Password:' ) . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__( 'Submit' ) . '" /></p>
    1252     </form>
     1251    <p><label for="' . $label . '">' . __( 'Password:' ) . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__( 'Submit' ) . '" /></p></form>
    12531252    ';
    12541253    return apply_filters( 'the_password_form', $output );
     
    14441443    echo "</ul>";
    14451444}
     1445
     1446/**
     1447 * Dashboard CSS fixes for 3.8.2.
     1448 *
     1449 * This function cheaply fixes #WP27082 and #WP26910 in lieu of
     1450 * changing the massive wp-admin.css file in a point release.
     1451 * This lucky includes file was already receiving an update.
     1452 *
     1453 * @since 3.8.2
     1454 * @access private
     1455 */
     1456function wp_382_css_hotfix() {
     1457    echo '<style type="text/css">
     1458#activity-widget #the-comment-list .comment-item { position: relative; }
     1459.tagsdiv .newtag { padding: 6px 10px; height: auto; }
     1460</style>
     1461';
     1462}
     1463add_action( 'admin_print_styles', 'wp_382_css_hotfix', 30 );
Note: See TracChangeset for help on using the changeset viewer.