PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.6
Elementor Website Builder – more than just a page builder v3.6.6
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/elements/section.php +2 -2 3.6.53.6.6 View file →
@@ -1565,12 +1565,12 @@
1565 1565 $shape_path = Shapes::get_shape_path( $settings[ $base_setting_key ], $negative );
1566 1566 if ( ! is_file( $shape_path ) || ! is_readable( $shape_path ) ) {
1567 1567 return;
1568 1568 }
1569 +
1569 1570 ?>
1570 1571 <div class="elementor-shape elementor-shape-<?php echo esc_attr( $side ); ?>" data-negative="<?php
1571 - // PHPCS - the variable $negative is getting a setting value with a strict structure.
1572 - echo var_export( $negative ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
1572 + Utils::print_unescaped_internal_string( $negative ? 'true' : 'false' );
1573 1573 ?>">
1574 1574 <?php
1575 1575 // PHPCS - The file content is being read from a strict file path structure.
1576 1576 echo file_get_contents( $shape_path ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped