Quick Edit: fix an ID attribute name collision by renaming one of the author fields author-name.

Props afercia.
Fixes #33770.

Built from https://develop.svn.wordpress.org/trunk@34070


git-svn-id: http://core.svn.wordpress.org/trunk@34038 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-12 02:35:25 +00:00
parent b453af5718
commit 821939d6d1
2 changed files with 3 additions and 3 deletions

View File

@ -498,8 +498,8 @@ function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $
<div id="addhead" style="display:none;"><h5><?php _e('Add new Comment'); ?></h5></div> <div id="addhead" style="display:none;"><h5><?php _e('Add new Comment'); ?></h5></div>
<div id="edithead" style="display:none;"> <div id="edithead" style="display:none;">
<div class="inside"> <div class="inside">
<label for="author"><?php _e('Name') ?></label> <label for="author-name"><?php _e( 'Name' ) ?></label>
<input type="text" name="newcomment_author" size="50" value="" id="author" /> <input type="text" name="newcomment_author" size="50" value="" id="author-name" />
</div> </div>
<div class="inside"> <div class="inside">

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-34069'; $wp_version = '4.4-alpha-34070';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.