Changeset 38980
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r38832 r38980 289 289 $response = $this->prepare_item_for_response( $user, $request ); 290 290 $response = rest_ensure_response( $response ); 291 $response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $current_user_id ) ) );292 $response->set_status( 302 );293 291 294 292 return $response; -
trunk/tests/phpunit/tests/rest-api/rest-users-controller.php
r38975 r38980 636 636 637 637 $response = $this->server->dispatch( $request ); 638 $this->assertEquals( 302, $response->get_status() );638 $this->assertEquals( 200, $response->get_status() ); 639 639 640 640 $headers = $response->get_headers(); 641 $this->assertArrayHasKey( 'Location', $headers ); 642 $this->assertEquals( rest_url( 'wp/v2/users/' . self::$user ), $headers['Location'] ); 641 $this->assertArrayNotHasKey( 'Location', $headers ); 642 643 $links = $response->get_links(); 644 $this->assertEquals( rest_url( 'wp/v2/users/' . self::$user ), $links['self'][0]['href'] ); 643 645 } 644 646
Note: See TracChangeset
for help on using the changeset viewer.