Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
Allow more HTML tags to be unfiltered by kses.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Mar 13, 2011
1 parent a2fa428 commit a6095be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e107-importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ function cleanUpMarkup($content) {
$new_content = $content;
$new_content = normalize_whitespace($new_content);
$new_content = wpautop($new_content);
$new_content = wp_kses_data($new_content);
$new_content = wp_kses_post($new_content);
$new_content = preg_replace("/\s*\n+\s*/", "\n\n", $new_content);

$content_transforms = array(
Expand Down

0 comments on commit a6095be

Please sign in to comment.