Skip to content
Snippets Groups Projects
Commit 32e53045 authored by ale's avatar ale
Browse files

Fix warning

parent a4e8c981
No related branches found
No related tags found
No related merge requests found
Pipeline #44768 passed
......@@ -353,12 +353,12 @@
return stripslashes(wp_filter_post_kses(get_option($this->shortname.'_feed_intro' )));
}
function feedEmail() {
return htmlspecialchars(wp_filter_post_kses(get_option($this->shortname.'_feed_email')), UTF-8);
return htmlspecialchars(wp_filter_post_kses(get_option($this->shortname.'_feed_email')), 'UTF-8');
}
/* TWITTER FUNCTIONS */
function twitter() {
return htmlspecialchars(wp_filter_post_kses(get_option($this->shortname.'_twitter')), UTF-8);
return htmlspecialchars(wp_filter_post_kses(get_option($this->shortname.'_twitter')), 'UTF-8');
}
function twitterToggle() {
return get_option($this->shortname.'_twitter_toggle' );
......@@ -469,4 +469,4 @@
$vigilance = new Vigilance();
}
?>
\ No newline at end of file
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment