Add space after comma in function call parameters

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 19:26:07 +03:00
parent 033e0581f1
commit c62cd6c023

View File

@ -41,7 +41,7 @@ class PostContentManager {
'<img>', '<p>', '<em>', '<span>', '<b>', '<strong>', '<i>', '<h1>',
'<h2>', '<h3>', '<a>', '<ul>', '<ol>', '<li>', '<br>'
);
$content = strip_tags($content, implode('',$tags_not_being_stripped));
$content = strip_tags($content, implode('', $tags_not_being_stripped));
$content = wpautop($content);
return $content;