Changeset 43682 for branches/5.0/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
- Timestamp:
- 10/08/2018 10:44:05 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
r43490 r43682 1769 1769 if ( 'attachment' !== $this->post_type && current_user_can( $post_type->cap->publish_posts ) ) { 1770 1770 $rels[] = 'https://api.w.org/action-publish'; 1771 } 1772 1773 if ( current_user_can( 'unfiltered_html' ) ) { 1774 $rels[] = 'https://api.w.org/action-unfiltered-html'; 1771 1775 } 1772 1776 … … 2180 2184 } 2181 2185 2186 $links[] = array( 2187 'rel' => 'https://api.w.org/action-unfiltered-html', 2188 'title' => __( 'The current user can post unfiltered HTML markup and JavaScript.' ), 2189 'href' => $href, 2190 'targetSchema' => array( 2191 'type' => 'object', 2192 'properties' => array( 2193 'content' => array( 2194 'raw' => array( 2195 'type' => 'string', 2196 ), 2197 ), 2198 ), 2199 ), 2200 ); 2201 2182 2202 if ( 'post' === $this->post_type ) { 2183 2203 $links[] = array(
Note: See TracChangeset
for help on using the changeset viewer.