Skip to content
Snippets Groups Projects
Commit 3aac083a authored by Marcin Kolanko's avatar Marcin Kolanko
Browse files

fix: add escaping function

parent 1853f946
Branches
No related tags found
1 merge request!46Bugfix/wordpress review
Pipeline #515899 passed
...@@ -698,7 +698,7 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) { ...@@ -698,7 +698,7 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
*/ */
public function handle_render_notices_action() { public function handle_render_notices_action() {
foreach ( $this->notices as $notice ) { foreach ( $this->notices as $notice ) {
echo $notice; echo wp_kses_post( $notice );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment