Changeset 27087
- Timestamp:
- 02/04/2014 04:12:52 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r26538 r27087 278 278 $wpdb->query( $wpdb->prepare("UPDATE $wpdb->posts SET post_author = %d WHERE post_author = %d", $reassign, $user_id) ); 279 279 $wpdb->query( $wpdb->prepare("UPDATE $wpdb->links SET link_owner = %d WHERE link_owner = %d", $reassign, $user_id) ); 280 281 $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_author = %d", $reassign ) ); 282 array_map( 'clean_post_cache', $post_ids ); 280 283 } 281 284 -
trunk/tests/phpunit/tests/ms.php
r26252 r27087 24 24 parent::tearDown(); 25 25 $wpdb->suppress_errors( $this->suppress ); 26 } 27 28 function test_remove_user_from_blog() { 29 $user1 = $this->factory->user->create_and_get(); 30 $user2 = $this->factory->user->create_and_get(); 31 32 $post_id = $this->factory->post->create( array( 'post_author' => $user1->ID ) ); 33 34 remove_user_from_blog( $user1->ID, 1, $user2->ID ); 35 36 $post = get_post( $post_id ); 37 38 $this->assertNotEquals( $user1->ID, $post->post_author ); 39 $this->assertEquals( $user2->ID, $post->post_author ); 26 40 } 27 41
Note: See TracChangeset
for help on using the changeset viewer.