Ticket #48848: 48848.patch
File 48848.patch, 521 bytes (added by , 5 years ago) |
---|
-
src/wp-mail.php
171 171 $content = explode( $delim[0], $content ); 172 172 $content = $content[1]; 173 173 } 174 $content = strip_tags( $content, '<img><p><br><i><b><u><em><strong><strike><font><span><div>');174 $content = strip_tags( $content, ['img','p', 'br', 'i', 'b', 'u', 'em', 'strong', 'strike', 'font', 'span', 'div'] ); 175 175 } 176 176 $content = trim( $content ); 177 177