mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Press This: Use the error message returned by wp_update_post()
instead of a generic one.
props stephdau. fixes #31808. Built from https://develop.svn.wordpress.org/trunk@31930 git-svn-id: http://core.svn.wordpress.org/trunk@31909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cd2e63700e
commit
e70e4e74fa
@ -136,8 +136,8 @@ class WP_Press_This {
|
|||||||
|
|
||||||
$updated = wp_update_post( $post, true );
|
$updated = wp_update_post( $post, true );
|
||||||
|
|
||||||
if ( is_wp_error( $updated ) || intval( $updated ) < 1 ) {
|
if ( is_wp_error( $updated ) ) {
|
||||||
wp_send_json_error( array( 'errorMessage' => __( 'Error while saving the post. Please try again later.' ) ) );
|
wp_send_json_error( array( 'errorMessage' => $updated->get_error_message() ) );
|
||||||
} else {
|
} else {
|
||||||
if ( isset( $post['post_format'] ) ) {
|
if ( isset( $post['post_format'] ) ) {
|
||||||
if ( current_theme_supports( 'post-formats', $post['post_format'] ) ) {
|
if ( current_theme_supports( 'post-formats', $post['post_format'] ) ) {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-beta3-31929';
|
$wp_version = '4.2-beta3-31930';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user