Ticket #37562: 37562.patch
File 37562.patch, 4.2 KB (added by , 5 years ago) |
---|
-
src/wp-includes/post.php
837 837 * Retrieves a post type object by name. 838 838 * 839 839 * @since 3.0.0 840 * @since 4.6.0 Converted to useWP_Post_Type.840 * @since 4.6.0 Object returned is now an instance of WP_Post_Type. 841 841 * 842 842 * @global array $wp_post_types List of post types. 843 843 * … … 900 900 * @since 3.0.0 The `show_ui` argument is now enforced on the new post screen. 901 901 * @since 4.4.0 The `show_ui` argument is now enforced on the post type listing 902 902 * screen and post editing screen. 903 * @since 4.6.0 Converted to useWP_Post_Type.903 * @since 4.6.0 Post type object returned is now an instance of WP_Post_Type. 904 904 * 905 905 * @global array $wp_post_types List of post types. 906 906 * … … 1058 1058 * Can not be used to unregister built-in post types. 1059 1059 * 1060 1060 * @since 4.5.0 1061 * @since 4.6.0 Converted to use WP_Post_Type.1062 1061 * 1063 1062 * @global array $wp_post_types List of post types. 1064 1063 * -
src/wp-includes/ms-load.php
121 121 * Retrieve the closest matching network for a domain and path. 122 122 * 123 123 * @since 3.9.0 124 * @since 4.4.0 Converted to a wrapper for WP_Network::get_by_path() 124 * 125 * @internal In 4.4.0, converted to a wrapper for WP_Network::get_by_path() 125 126 * 126 127 * @param string $domain Domain to check. 127 128 * @param string $path Path to check. … … 136 137 * Retrieve an object containing information about the requested network. 137 138 * 138 139 * @since 3.9.0 139 * @since 4.4.0 Converted to leverage WP_Network 140 * @since 4.6.0 Converted to use get_network() 140 * 141 * @internal In 4.4.0, converted to leverage WP_Network 142 * @internal In 4.6.0, converted to use get_network() 141 143 * 142 144 * @param object|int $network The network's database row or ID. 143 145 * @return WP_Network|false Object containing network information if found, false if not. … … 155 157 * Retrieve a site object by its domain and path. 156 158 * 157 159 * @since 3.9.0 158 * @since 4.6.0 Converted to use get_sites() 160 * 161 * @internal In 4.6.0, converted to use get_sites() 159 162 * 160 163 * @global wpdb $wpdb WordPress database abstraction object. 161 164 * -
src/wp-includes/ms-functions.php
296 296 * $domain is 'blog1.example.com' and $path is '/'. 297 297 * 298 298 * @since MU 2.6.5 299 * @since 4.6.0 Converted to use get_sites() 299 * 300 * @internal In 4.6.0, converted to use get_sites() 300 301 * 301 302 * @global wpdb $wpdb WordPress database abstraction object. 302 303 * … … 1252 1253 * that each blogname is unique. 1253 1254 * 1254 1255 * @since MU 1255 * @since 4.6.0 Converted to use get_sites() 1256 * 1257 * @internal In 4.6.0, converted to use get_sites() 1256 1258 * 1257 1259 * @global wpdb $wpdb WordPress database abstraction object. 1258 1260 * … … 2259 2261 * Update the network-wide site count. 2260 2262 * 2261 2263 * @since 3.7.0 2262 * @since 4.6.0 Converted to use get_sites() 2264 * 2265 * @internal In 4.6.0, converted to use get_sites() 2263 2266 * 2264 2267 * @global wpdb $wpdb WordPress database abstraction object. 2265 2268 */ -
src/wp-admin/includes/class-wp-ms-sites-list-table.php
62 62 * Prepares the list of sites for display. 63 63 * 64 64 * @since 3.1.0 65 * @since 4.6.0 Converted to use get_sites()66 65 * 67 66 * @global string $s 68 67 * @global string $mode -
src/wp-includes/class-wp-customize-setting.php
468 468 * the value of the setting. 469 469 * 470 470 * @since 3.4.0 471 * @since 4.6.0 Return the result of updating the value.471 * 472 472 * @access public 473 473 * 474 474 * @return false|void False if cap check fails or value isn't set or is invalid.