Changeset 39089
- Timestamp:
- 11/02/2016 06:01:49 AM (8 years ago)
- Location:
- trunk/src/wp-includes/rest-api/endpoints
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39015 r39089 1133 1133 'type' => 'object', 1134 1134 'context' => array( 'view', 'edit', 'embed' ), 1135 'arg_options' => array( 1136 'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database() 1137 ), 1135 1138 'properties' => array( 1136 1139 'raw' => array( -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
r39084 r39089 1814 1814 'type' => 'object', 1815 1815 'context' => array( 'view', 'edit', 'embed' ), 1816 'arg_options' => array( 1817 'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database() 1818 ), 1816 1819 'properties' => array( 1817 1820 'raw' => array( … … 1835 1838 'type' => 'object', 1836 1839 'context' => array( 'view', 'edit' ), 1840 'arg_options' => array( 1841 'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database() 1842 ), 1837 1843 'properties' => array( 1838 1844 'raw' => array( … … 1870 1876 'type' => 'object', 1871 1877 'context' => array( 'view', 'edit', 'embed' ), 1878 'arg_options' => array( 1879 'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database() 1880 ), 1872 1881 'properties' => array( 1873 1882 'raw' => array(
Note: See TracChangeset
for help on using the changeset viewer.