Make WordPress Core

Ticket #44410: 44410-3.diff

File 44410-3.diff, 754 bytes (added by subrataemfluence, 5 years ago)
  • class-wp-customize-header-image-control.php

    diff --git src/wp-includes/customize/class-wp-customize-header-image-control.php b/class-wp-customize-header-image-control.php
    index 68262dd..1764b8c 100755
    old new  
    1515 * @see WP_Customize_Image_Control
    1616 */
    1717class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
     18        /**
     19         * Customize control type.
     20         *
     21         * @since 4.9.7
     22         * @var string
     23         */
    1824        public $type = 'header';
     25
     26        /**
     27         * Uploaded header images.
     28         *
     29         * @since 4.9.7
     30         * @var array
     31         */
    1932        public $uploaded_headers;
     33       
     34        /**
     35         * Default header images.
     36         *
     37         * @since 4.9.7
     38         * @var array
     39         */
    2040        public $default_headers;
    2141
    2242        /**