Make WordPress Core

Ticket #48848: 48848.patch

File 48848.patch, 521 bytes (added by dkarfa, 5 years ago)
  • src/wp-mail.php

     
    171171                        $content = explode( $delim[0], $content );
    172172                        $content = $content[1];
    173173                }
    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'] );
    175175        }
    176176        $content = trim( $content );
    177177