Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Sep 2, 2024
1 parent 405af3c commit e7fa12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ protected function _is_admin_request() {
protected function _is_block_embed_rendering_request() {
$reuest_uri = filter_input( INPUT_SERVER, 'REQUEST_URI' );
if ( ! $reuest_uri ) {
$reuest_uri = esc_html( wp_unslash( $_SERVER['REQUEST_URI'] ?? '' ) );
$reuest_uri = wp_unslash( esc_html( $_SERVER['REQUEST_URI'] ?? '' ) );
}

if ( ! $reuest_uri ) {
Expand Down

0 comments on commit e7fa12d

Please sign in to comment.