Skip to content

Commit

Permalink
Update impostazioni-pasw2015-saver.php
Browse files Browse the repository at this point in the history
sostituita api htmlentities con esc_html su due variabili eucookies
  • Loading branch information
cghellere committed Jun 3, 2015
1 parent 51bb23a commit d7336d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/impostazioni-pasw2015-saver.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
update_option( 'pasw_eucookie_button', $_POST["pasw_eucookie_button_n"] );
update_option( 'pasw_eucookie_info', $_POST["pasw_eucookie_info_n"] );
update_option( 'pasw_eucookie_page', $_POST["pasw_eucookie_page_n"] );
update_option( 'pasw_eucookie_msg', htmlentities(stripslashes($_POST["pasw_eucookie_msg_n"])) );
update_option( 'pasw_eucookie_box_msg', htmlentities(stripslashes($_POST["pasw_eucookie_box_msg_n"])) );
update_option( 'pasw_eucookie_msg', esc_html(stripslashes($_POST["pasw_eucookie_msg_n"])) );
update_option( 'pasw_eucookie_box_msg', esc_html(stripslashes($_POST["pasw_eucookie_box_msg_n"])) );
}

if ($_POST["pasw_ga_password_n"] != '#OK#') {
Expand Down

0 comments on commit d7336d1

Please sign in to comment.