Skip to content

Commit

Permalink
sanitizePageContent in Blog Content
Browse files Browse the repository at this point in the history
  • Loading branch information
BSteelooper committed Sep 5, 2018
1 parent 3106f22 commit ca6bc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/modules/blog/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function blog_save_post($title, $category, $content, $current_seoname = null, $f

//Sanitize variables.
$title = sanitize($title, true);
$content = sanitize($content, false);
$content = sanitizePageContent($content, false);

if (!empty($current_seoname)) {
$current_filename = blog_get_post_filename($current_seoname);
Expand Down

0 comments on commit ca6bc74

Please sign in to comment.