Make WordPress Core

Ticket #12394: kses.php.diff

File kses.php.diff, 1.0 KB (added by dougal, 15 years ago)

Patch to improve XHTML compatibility on empty elements like img

  • kses.php

    old new  
    538538        # Is there a closing XHTML slash at the end of the attributes?
    539539
    540540        $xhtml_slash = '';
    541         if (preg_match('%\s/\s*$%', $attr))
     541        if (preg_match('%\s*/\s*$%', $attr))
    542542                $xhtml_slash = ' /';
    543543
    544544        # Are any attributes allowed at all for this element?
     
    664664
    665665                        case 2 : # attribute value, a URL after href= for instance
    666666
    667                                 if (preg_match('/^"([^"]*)"(\s+|$)/', $attr, $match))
     667                                if (preg_match('%^"([^"]*)"(\s+|/?$)%', $attr, $match))
    668668                                        # "value"
    669669                                        {
    670670                                        $thisval = $match[1];
     
    680680                                        break;
    681681                                }
    682682
    683                                 if (preg_match("/^'([^']*)'(\s+|$)/", $attr, $match))
     683                                if (preg_match("%^'([^']*)'(\s+|/?$)%", $attr, $match))
    684684                                        # 'value'
    685685                                        {
    686686                                        $thisval = $match[1];
     
    696696                                        break;
    697697                                }
    698698
    699                                 if (preg_match("%^([^\s\"']+)(\s+|$)%", $attr, $match))
     699                                if (preg_match("%^([^\s\"']+)(\s+|/?$)%", $attr, $match))
    700700                                        # value
    701701                                        {
    702702                                        $thisval = $match[1];