Changeset 51414 for trunk/src/wp-includes/class-wp-customize-widgets.php
- Timestamp:
- 07/13/2021 05:57:04 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-widgets.php
r51232 r51414 1420 1420 $widget_object = $wp_widget_factory->get_widget_object( $id_base ); 1421 1421 if ( ! empty( $widget_object->widget_options['show_instance_in_rest'] ) ) { 1422 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. 1426 $value['raw_instance']['content'] = wp_kses_post( $value['raw_instance']['content'] ); 1427 } 1428 1422 1429 return $value['raw_instance']; 1423 1430 }
Note: See TracChangeset
for help on using the changeset viewer.