Ticket #41841: 41841.diff
File 41841.diff, 2.0 KB (added by , 7 years ago) |
---|
-
wp-includes/class-wp-customize-nav-menus.php
716 716 * Return an array of all the available item types. 717 717 * 718 718 * @since 4.3.0 719 * @since 4.7.0 Each array item now includes a `$type_label` in inaddition to `$title`, `$type`, and `$object`.719 * @since 4.7.0 Each array item now includes a `$type_label` in addition to `$title`, `$type`, and `$object`. 720 720 * 721 721 * @return array The available menu item types. 722 722 */ … … 754 754 * Filters the available menu item types. 755 755 * 756 756 * @since 4.3.0 757 * @since 4.7.0 Each array item now includes a `$type_label` in inaddition to `$title`, `$type`, and `$object`.757 * @since 4.7.0 Each array item now includes a `$type_label` in addition to `$title`, `$type`, and `$object`. 758 758 * 759 759 * @param array $item_types Custom menu item types. 760 760 */ -
wp-includes/theme.php
3134 3134 } 3135 3135 $wpdb->update( 3136 3136 $wpdb->posts, 3137 array( 'post_date' => $new_post_date ), // Note wp_delete_auto_drafts() only looks at this thisdate.3137 array( 'post_date' => $new_post_date ), // Note wp_delete_auto_drafts() only looks at this date. 3138 3138 array( 'ID' => $post_id ) 3139 3139 ); 3140 3140 clean_post_cache( $post_id ); -
wp-signup.php
247 247 * 248 248 * @since 3.0.0 249 249 * 250 * @param WP_Error $errors A WP_Error object containing containing'user_name' or 'user_email' errors.250 * @param WP_Error $errors A WP_Error object containing 'user_name' or 'user_email' errors. 251 251 */ 252 252 do_action( 'signup_extra_fields', $errors ); 253 253 }