Skip to content

Commit

Permalink
Fix some translations Code Sniff
Browse files Browse the repository at this point in the history
  • Loading branch information
bordoni committed Oct 11, 2024
1 parent a4b1b4d commit 44fe9dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Common/Admin/Conditional_Content/Black_Friday.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function render_wide_banner_html(): void {
if ( ! $this->should_display() ) {
return;
}
echo $this->get_wide_banner_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped StellarWP.XSS.EscapeOutput.OutputNotEscaped
echo $this->get_wide_banner_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped,StellarWP.XSS.EscapeOutput.OutputNotEscaped
}

/**
Expand Down Expand Up @@ -123,7 +123,7 @@ public function render_narrow_banner_html(): void {
if ( ! $this->should_display() ) {
return;
}
echo $this->get_narrow_banner_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped StellarWP.XSS.EscapeOutput.OutputNotEscaped
echo $this->get_narrow_banner_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped,StellarWP.XSS.EscapeOutput.OutputNotEscaped
}

/**
Expand Down

0 comments on commit 44fe9dd

Please sign in to comment.