Changeset 39468
- Timestamp:
- 12/03/2016 05:15:42 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r39406 r39468 1738 1738 ) ); 1739 1739 1740 register_setting( 'general', 'siteurl', array( 1741 'show_in_rest' => array( 1742 'name' => 'url', 1743 'schema' => array( 1744 'format' => 'uri', 1740 if ( ! is_multisite() ) { 1741 register_setting( 'general', 'siteurl', array( 1742 'show_in_rest' => array( 1743 'name' => 'url', 1744 'schema' => array( 1745 'format' => 'uri', 1746 ), 1745 1747 ), 1746 ),1747 'type' => 'string',1748 'description' => __( 'Site URL.' ),1749 ) );1748 'type' => 'string', 1749 'description' => __( 'Site URL.' ), 1750 ) ); 1751 } 1750 1752 1751 1753 register_setting( 'general', 'admin_email', array( -
trunk/tests/phpunit/tests/rest-api/rest-settings-controller.php
r39058 r39468 50 50 $response = $this->server->dispatch( $request ); 51 51 $data = $response->get_data(); 52 53 $this->assertEquals( 200, $response->get_status() ); 54 $ this->assertEquals(array(52 $actual = array_keys( $data ); 53 54 $expected = array( 55 55 'title', 56 56 'description', … … 68 68 'default_ping_status', 69 69 'default_comment_status', 70 ), array_keys( $data ) ); 70 ); 71 72 if ( is_multisite() ) { 73 $expected = array_diff( $expected, array( 'url' ) ); 74 } 75 76 sort( $expected ); 77 sort( $actual ); 78 79 $this->assertEquals( 200, $response->get_status() ); 80 $this->assertEquals( $expected, $actual ); 71 81 } 72 82
Note: See TracChangeset
for help on using the changeset viewer.