mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
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:
parent
b453af5718
commit
821939d6d1
@ -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="edithead" style="display:none;">
|
||||
<div class="inside">
|
||||
<label for="author"><?php _e('Name') ?></label>
|
||||
<input type="text" name="newcomment_author" size="50" value="" id="author" />
|
||||
<label for="author-name"><?php _e( 'Name' ) ?></label>
|
||||
<input type="text" name="newcomment_author" size="50" value="" id="author-name" />
|
||||
</div>
|
||||
|
||||
<div class="inside">
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @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.
|
||||
|
Loading…
Reference in New Issue
Block a user