Make WordPress Core

Ticket #44410: 44410.diff

File 44410.diff, 699 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         * @var string
     22         */
    1823        public $type = 'header';
     24
     25        /**
     26         * Uploaded header images
     27         *
     28         * @var array
     29         */
    1930        public $uploaded_headers;
     31       
     32        /**
     33         * Default header images.
     34         *
     35         * @var array
     36         */
    2037        public $default_headers;
    2138
    2239        /**