Make WordPress Core


Ignore:
Timestamp:
07/13/2021 06:01:58 PM (3 years ago)
Author:
desrosj
Message:

Coding Standards: Use the correct formatting for multi-line comments.

Follow up to [51414].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-widgets.php

    r51414 r51423  
    14211421            if ( ! empty( $widget_object->widget_options['show_instance_in_rest'] ) ) {
    14221422                if ( 'block' === $id_base && ! current_user_can( 'unfiltered_html' ) ) {
    1423                     // The content of the 'block' widget is not filtered on the
    1424                     // fly while editing. Filter the content here to prevent
    1425                     // vulnerabilities.
     1423                    /*
     1424                     * The content of the 'block' widget is not filtered on the
     1425                     * fly while editing. Filter the content here to prevent
     1426                     * vulnerabilities.
     1427                     */
    14261428                    $value['raw_instance']['content'] = wp_kses_post( $value['raw_instance']['content'] );
    14271429                }
Note: See TracChangeset for help on using the changeset viewer.