Editor: Revert a fix for incorrect usage of ID attributes on custom fields.

This reverts [47222] due to compatibility issues with plugins which are using the `#poststuff` selector.

See #46964

git-svn-id: https://develop.svn.wordpress.org/trunk@47410 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2020-03-03 00:35:41 +00:00
parent 0fcbdc1e2d
commit b20dd081ba
10 changed files with 51 additions and 51 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
<div class="wrap">
<h1><?php _e( 'Edit Comment' ); ?></h1>
<div class="poststuff">
<div id="poststuff">
<input type="hidden" name="action" value="editedcomment" />
<input type="hidden" name="comment_ID" value="<?php echo esc_attr( $comment->comment_ID ); ?>" />
<input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $comment->comment_post_ID ); ?>" />
@@ -214,7 +214,7 @@ endif;
</div><!-- /submitdiv -->
</div>
<div class="postbox-container-2 postbox-container">
<div id="postbox-container-2" class="postbox-container">
<?php
/** This action is documented in wp-admin/includes/meta-boxes.php */
do_action( 'add_meta_boxes', 'comment', $comment );