Changeset 46610
- Timestamp:
- 10/28/2019 07:46:13 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r45932 r46610 128 128 if ( is_wp_error( $download ) && $download->get_error_data( 'softfail-filename' ) ) { 129 129 // Outout the failure error as a normal feedback, and not as an error: 130 /** This filter is documented in wp-admin/includes/update-core.php */ 130 131 apply_filters( 'update_feedback', $download->get_error_message() ); 131 132 -
trunk/src/wp-admin/includes/class-wp-list-table.php
r46341 r46610 502 502 503 503 /** 504 * Generate row actions div504 * Generates the required HTML for a list of row action links. 505 505 * 506 506 * @since 3.1.0 … … 508 508 * @param string[] $actions An array of action links. 509 509 * @param bool $always_visible Whether the actions should be always visible. 510 * @return string 510 * @return string The HTML for the row actions. 511 511 */ 512 512 protected function row_actions( $actions, $always_visible = false ) { … … 532 532 533 533 /** 534 * Display a monthly dropdown for filtering items534 * Displays a dropdown for filtering items in the list table by month. 535 535 * 536 536 * @since 3.1.0 … … 539 539 * @global WP_Locale $wp_locale WordPress date and time locale object. 540 540 * 541 * @param string $post_type 541 * @param string $post_type The post type. 542 542 */ 543 543 protected function months_dropdown( $post_type ) { -
trunk/src/wp-includes/functions.php
r46602 r46610 2619 2619 * Values for the extension and mime type. 2620 2620 * 2621 * @type string|false $ 0File extension, or false if the file doesn't match a mime type.2622 * @type string|false $ 1File mime type, or false if the file doesn't match a mime type.2621 * @type string|false $ext File extension, or false if the file doesn't match a mime type. 2622 * @type string|false $type File mime type, or false if the file doesn't match a mime type. 2623 2623 * } 2624 2624 */ … … 2661 2661 * Values for the extension, mime type, and corrected filename. 2662 2662 * 2663 * @type string|false $ 0File extension, or false if the file doesn't match a mime type.2664 * @type string|false $ 1File mime type, or false if the file doesn't match a mime type.2665 * @type string|false $ 2File name with its correct extension, or false if it cannot be determined.2663 * @type string|false $ext File extension, or false if the file doesn't match a mime type. 2664 * @type string|false $type File mime type, or false if the file doesn't match a mime type. 2665 * @type string|false $proper_filename File name with its correct extension, or false if it cannot be determined. 2666 2666 * } 2667 2667 */ … … 2823 2823 * Values for the extension, mime type, and corrected filename. 2824 2824 * 2825 * @type string|false $ 0File extension, or false if the file doesn't match a mime type.2826 * @type string|false $ 1File mime type, or false if the file doesn't match a mime type.2827 * @type string|false $ 2File name with its correct extension, or false if it cannot be determined.2825 * @type string|false $ext File extension, or false if the file doesn't match a mime type. 2826 * @type string|false $type File mime type, or false if the file doesn't match a mime type. 2827 * @type string|false $proper_filename File name with its correct extension, or false if it cannot be determined. 2828 2828 * } 2829 2829 * @param string $file Full path to the file. -
trunk/src/wp-includes/post-template.php
r46596 r46610 420 420 * @since 4.5.0 Introduced the `$post` parameter. 421 421 * 422 * @param string $post_excerpt The post excerpt.423 * @param WP_Post $post Post object.422 * @param string $post_excerpt The post excerpt. 423 * @param WP_Post $post Post object. 424 424 */ 425 425 return apply_filters( 'get_the_excerpt', $post->post_excerpt, $post ); -
trunk/src/wp-includes/script-loader.php
r46606 r46610 779 779 ); 780 780 781 /* This filter is documented in wp-includes/class-wp-editor.php */781 /** This filter is documented in wp-includes/class-wp-editor.php */ 782 782 $tinymce_plugins = apply_filters( 'tiny_mce_plugins', $tinymce_plugins, 'classic-block' ); 783 783 $tinymce_plugins = array_unique( $tinymce_plugins ); … … 808 808 ); 809 809 810 /* This filter is documented in wp-includes/class-wp-editor.php */810 /** This filter is documented in wp-includes/class-wp-editor.php */ 811 811 $toolbar1 = apply_filters( 'mce_buttons', $toolbar1, 'classic-block' ); 812 812 … … 825 825 ); 826 826 827 /* This filter is documented in wp-includes/class-wp-editor.php */827 /** This filter is documented in wp-includes/class-wp-editor.php */ 828 828 $toolbar2 = apply_filters( 'mce_buttons_2', $toolbar2, 'classic-block' ); 829 /* This filter is documented in wp-includes/class-wp-editor.php */829 /** This filter is documented in wp-includes/class-wp-editor.php */ 830 830 $toolbar3 = apply_filters( 'mce_buttons_3', array(), 'classic-block' ); 831 /* This filter is documented in wp-includes/class-wp-editor.php */831 /** This filter is documented in wp-includes/class-wp-editor.php */ 832 832 $toolbar4 = apply_filters( 'mce_buttons_4', array(), 'classic-block' ); 833 /* This filter is documented in wp-includes/class-wp-editor.php */833 /** This filter is documented in wp-includes/class-wp-editor.php */ 834 834 $external_plugins = apply_filters( 'mce_external_plugins', array(), 'classic-block' ); 835 835 … … 852 852 } 853 853 854 /* This filter is documented in wp-includes/class-wp-editor.php */854 /** This filter is documented in wp-includes/class-wp-editor.php */ 855 855 $tinymce_settings = apply_filters( 'tiny_mce_before_init', $tinymce_settings, 'classic-block' ); 856 856
Note: See TracChangeset
for help on using the changeset viewer.