Skip to content

Commit

Permalink
Fix unescaped variable
Browse files Browse the repository at this point in the history
  • Loading branch information
wolffe committed Oct 14, 2024
1 parent 2527253 commit 0b07fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/builder/class-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public static function content( $post_id ) {

<div id="<?php echo esc_attr( $row_html_id ); ?>" class="<?php echo esc_attr( $row_html_class ); ?>" data-index="<?php echo intval( $rows_data[ $row_id ]['index'] ); ?>" data-layout="<?php echo esc_attr( $rows_data[ $row_id ]['layout'] ); ?>">

<div class="fxb-wrap" style="gap: <?php echo esc_attr( $row_column_gap ); ?>; align-items: <?php echo esc_attr( $row_column_align ); ?>; <?php echo $row_html_height; ?>">
<div class="fxb-wrap" style="gap: <?php echo esc_attr( $row_column_gap ); ?>; align-items: <?php echo esc_attr( $row_column_align ); ?>; <?php echo esc_attr( $row_html_height ); ?>">

<?php
$cols = range( 1, $rows_data[ $row_id ]['col_num'] );
Expand Down

0 comments on commit 0b07fe6

Please sign in to comment.