Skip to content

Commit

Permalink
Fix: Add missing script close tag (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
burhandodhy authored Jul 29, 2024
1 parent e666e0d commit 828cd68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class-bc-utility.php
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ public static function get_playlist_player( $atts ) {
class="video-js"
controls <?php echo esc_attr( $playsinline ); ?> <?php echo esc_attr( $autoplay ); ?> <?php echo esc_attr( $mute ); ?>>
</video>
<script src="<?php echo esc_url( $src ); ?>"><?php //phpcs:ignore WordPress.WP.EnqueuedResources ?>
<script src="<?php echo esc_url( $src ); ?>"></script><?php //phpcs:ignore WordPress.WP.EnqueuedResources ?>
<div class="playlist-wrapper">
<ol class="vjs-playlist vjs-csspointerevents vjs-mouse"> </ol>
</div>
Expand Down

0 comments on commit 828cd68

Please sign in to comment.