Make WordPress Core

Ticket #43158: 43158.diff

File 43158.diff, 2.8 KB (added by coffee2code, 8 years ago)

Patch mentioned in ticket.

  • src/wp-includes/class-wp-customize-nav-menus.php

     
    13071307         *
    13081308         * @since 4.3.0
    13091309         * @see wp_nav_menu()
    1310          * @see WP_Customize_Widgets_Partial_Refresh::filter_dynamic_sidebar_params()
     1310         * @see WP_Customize_Widgets::filter_dynamic_sidebar_params()
    13111311         *
    13121312         * @param array $args An array containing wp_nav_menu() arguments.
    13131313         * @return array Arguments.
  • src/wp-includes/class-wp-customize-widgets.php

     
    16201620         *     @type array $args        Sidebar args.
    16211621         *     @type array $widget_args Widget args.
    16221622         * }
    1623          * @see WP_Customize_Nav_Menus_Partial_Refresh::filter_wp_nav_menu_args()
     1623         * @see WP_Customize_Nav_Menus::filter_wp_nav_menu_args()
    16241624         *
    16251625         * @return array Params.
    16261626         */
  • src/wp-includes/widgets/class-wp-widget-text.php

     
    411411         * @since 2.8.0
    412412         * @since 4.8.0 Form only contains hidden inputs which are synced with JS template.
    413413         * @since 4.8.1 Restored original form to be displayed when in legacy mode.
    414          * @see WP_Widget_Visual_Text::render_control_template_scripts()
     414         * @see WP_Widget_Text::render_control_template_scripts()
    415415         * @see _WP_Editors::editor()
    416416         *
    417417         * @param array $instance Current settings.
  • src/wp-includes/class-wp-editor.php

     
    7373                 *
    7474                 * @since 4.0.0
    7575                 *
    76                  * @see _WP_Editors()::parse_settings()
     76                 * @see _WP_Editors::parse_settings()
    7777                 *
    7878                 * @param array  $settings  Array of editor arguments.
    7979                 * @param string $editor_id ID for the current editor instance.
     
    151151         * @static
    152152         * @param string $content The initial content of the editor.
    153153         * @param string $editor_id ID for the textarea and TinyMCE and Quicktags instances (can contain only ASCII letters and numbers).
    154          * @param array $settings See _WP_Editors()::parse_settings() for description.
     154         * @param array $settings See _WP_Editors::parse_settings() for description.
    155155         */
    156156        public static function editor( $content, $editor_id, $settings = array() ) {
    157157                $set            = self::parse_settings( $editor_id, $settings );