mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 23:25:50 +01:00
Prevent unnecessary $wpdb->update() when hierarchical post doesn't have children.
Props danielbachhuber. Fixes #34896. Built from https://develop.svn.wordpress.org/trunk@35817 git-svn-id: http://core.svn.wordpress.org/trunk@35781 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b6a14367e4
commit
5031ca5c23
@ -2405,8 +2405,9 @@ function wp_delete_post( $postid = 0, $force_delete = false ) {
|
|||||||
// Point children of this page to its parent, also clean the cache of affected children.
|
// Point children of this page to its parent, also clean the cache of affected children.
|
||||||
$children_query = $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_parent = %d AND post_type = %s", $postid, $post->post_type );
|
$children_query = $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_parent = %d AND post_type = %s", $postid, $post->post_type );
|
||||||
$children = $wpdb->get_results( $children_query );
|
$children = $wpdb->get_results( $children_query );
|
||||||
|
if ( $children ) {
|
||||||
$wpdb->update( $wpdb->posts, $parent_data, $parent_where + array( 'post_type' => $post->post_type ) );
|
$wpdb->update( $wpdb->posts, $parent_data, $parent_where + array( 'post_type' => $post->post_type ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do raw query. wp_get_post_revisions() is filtered.
|
// Do raw query. wp_get_post_revisions() is filtered.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-alpha-35816';
|
$wp_version = '4.5-alpha-35817';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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