Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/02/2024 02:07:21 AM (4 months ago)
Author:
espellcaste
Message:

WPCS: Part VII: miscellaneous fixes for some of the files of the core component.

Follow-up to [13883], [13886], [13887], [13888], [13891], and [13892]

See #9164 and #7228

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-customizer-control-range.php

    r10475 r13893  
    1616 */
    1717class BP_Customizer_Control_Range extends WP_Customize_Control {
     18
    1819    /**
     20     * Control type.
     21     *
    1922     * @var string
    2023     */
     
    4750            <?php endif; ?>
    4851
    49             <input type="range" id="<?php echo esc_attr( "{$id}-range" ); ?>" <?php $this->link(); $this->input_attrs(); ?> value="<?php echo esc_attr( $this->value() ); ?>" />
     52            <input type="range" id="<?php echo esc_attr( "{$id}-range" ); ?>"
     53            <?php
     54            $this->link();
     55            $this->input_attrs();
     56            ?>
     57            value="<?php echo esc_attr( $this->value() ); ?>" />
    5058            <output for="<?php echo esc_attr( "{$id}-range" ); ?>"><?php echo esc_html( $this->value() ); ?></output>
    5159
     
    5361                <p><span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span></p>
    5462            <?php endif; ?>
    55         </li><?php
     63        </li>
     64        <?php
    5665    }
    5766}
Note: See TracChangeset for help on using the changeset viewer.