Changeset 36232
- Timestamp:
- 01/09/2016 01:44:31 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/list-table.php
r34897 r36232 74 74 * 75 75 * @since 2.7.0 76 * 77 * @param string|WP_Screen $screen The screen hook name or screen object. 78 * @param bool $with_id Whether to set the id attribute or not. 76 79 */ 77 function print_column_headers( $screen, $id = true) {80 function print_column_headers( $screen, $with_id = true ) { 78 81 $wp_list_table = new _WP_List_Table_Compat($screen); 79 82 80 $wp_list_table->print_column_headers( $id);83 $wp_list_table->print_column_headers( $with_id ); 81 84 } 82 85 -
trunk/src/wp-admin/includes/media.php
r36223 r36232 2689 2689 * 2690 2690 * @since 3.5.0 2691 * 2692 * @param WP_Post $post A post object. 2691 2693 */ 2692 2694 function edit_form_image_editor( $post ) { -
trunk/src/wp-admin/includes/meta-boxes.php
r36053 r36232 1174 1174 * 1175 1175 * @since 2.9.0 1176 * 1177 * @param WP_Post $post A post object. 1176 1178 */ 1177 1179 function post_thumbnail_meta_box( $post ) { … … 1185 1187 * @since 3.9.0 1186 1188 * 1187 * @param WP_Post $post 1189 * @param WP_Post $post A post object. 1188 1190 */ 1189 1191 function attachment_id3_data_meta_box( $post ) { -
trunk/src/wp-admin/includes/misc.php
r36231 r36232 636 636 * 637 637 * @global array $_wp_admin_css_colors 638 * 639 * @param int $user_id User ID. 638 640 */ 639 641 function admin_color_scheme_picker( $user_id ) { -
trunk/src/wp-includes/feed.php
r36230 r36232 623 623 * 624 624 * @since 2.8.0 625 * 626 * @param string $type Type of feed. Possible values include 'rss', rss2', 'atom', and 'rdf'. 625 627 */ 626 628 function feed_content_type( $type = '' ) { … … 643 645 * 644 646 * @param string $content_type Content type indicating the type of data that a feed contains. 645 * @param string $type Type of feed. Possible values include 'rss2', 'atom'. 646 * Default 'rss2'. 647 * @param string $type Type of feed. Possible values include 'rss', rss2', 'atom', and 'rdf'. 647 648 */ 648 649 return apply_filters( 'feed_content_type', $content_type, $type ); -
trunk/src/wp-includes/kses.php
r35960 r36232 1672 1672 * 1673 1673 * @since 2.8.1 1674 * 1675 * @param string $css A string of CSS rules. 1676 * @param string $deprecated Not used. 1677 * @return string Filtered string of CSS rules. 1674 1678 */ 1675 1679 function safecss_filter_attr( $css, $deprecated = '' ) { -
trunk/src/wp-includes/ms-blogs.php
r35446 r36232 560 560 * @since MU 561 561 * 562 * @param int $id The blog id 563 * @param string $option The option key 564 * @param mixed $value The option value 562 * @param int $id The blog id. 563 * @param string $option The option key. 564 * @param mixed $value The option value. 565 * @param mixed $deprecated Not used. 565 566 * @return bool True on success, false on failure. 566 567 */ -
trunk/src/wp-includes/ms-deprecated.php
r35170 r36232 154 154 * @deprecated 3.0.0 Use is_email() 155 155 * @see is_email() 156 * 157 * @param string $email Email address to verify. 158 * @param bool $check_domain Deprecated. 159 * @return string|bool Either false or the valid email address. 156 160 */ 157 161 function validate_email( $email, $check_domain = true) { -
trunk/src/wp-includes/ms-functions.php
r36069 r36232 1160 1160 * @since MU 1161 1161 * 1162 * @param int $blog_id The new site's ID. 1162 * @param int $blog_id The new site's ID. 1163 * @param string $deprecated Not used. 1163 1164 * @return bool 1164 1165 */ … … 1755 1756 * 1756 1757 * @global wpdb $wpdb WordPress database abstraction object. 1758 * 1759 * @param string $deprecated Not used. 1757 1760 */ 1758 1761 function update_posts_count( $deprecated = '' ) { … … 1788 1791 * @staticvar int $global_terms_recurse 1789 1792 * 1790 * @param int $term_id An ID for a term on the current blog. 1793 * @param int $term_id An ID for a term on the current blog. 1794 * @param string $deprecated Not used. 1791 1795 * @return int An ID from the global terms table mapped from $term_id. 1792 1796 */ … … 1857 1861 * @since MU 1858 1862 * 1863 * @param array|string $deprecated Not used. 1859 1864 * @return array The current site's domain 1860 1865 */ … … 2020 2025 * 2021 2026 * @since MU 2027 * 2028 * @param PHPMailer $phpmailer The PHPMailer instance, passed by reference. 2022 2029 */ 2023 2030 function fix_phpmailer_messageid( $phpmailer ) { … … 2352 2359 2353 2360 /** 2361 * Filters the maximum upload file size allowed, in bytes. 2362 * 2354 2363 * @since 3.0.0 2355 2364 * 2356 * @return int of upload size limit in bytes 2365 * @param int $size Upload size limit in bytes. 2366 * @return int Upload size limit in bytes. 2357 2367 */ 2358 2368 function upload_size_limit_filter( $size ) { -
trunk/src/wp-includes/session.php
r31471 r36232 276 276 * 277 277 * @param string $verifier Verifier of the session to update. 278 * @param array $session Optional. Session. Omitting this argument destroys the session. 278 279 */ 279 280 abstract protected function update_session( $verifier, $session = null );
Note: See TracChangeset
for help on using the changeset viewer.