diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php
index b9986d1bdec7..c93ac71bec52 100644
a
|
b
|
function edit_post( $post_data = null ) { |
452 | 452 | |
453 | 453 | $success = wp_update_post( $translated ); |
454 | 454 | |
455 | | // If the save failed, see if we can sanity check the main fields and try again. |
| 455 | // If the save failed, see if we can confidence check the main fields and try again. |
456 | 456 | if ( ! $success && is_callable( array( $wpdb, 'strip_invalid_text_for_column' ) ) ) { |
457 | 457 | $fields = array( 'post_title', 'post_content', 'post_excerpt' ); |
458 | 458 | |