﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
9821,wp_specialchars doesn't capture pre-encoded entities correctly,westi,westi,"Working on updating some of the wordpress-tests test cases for the formatting code to work with the new special chars and it looks like the capture of pre-encoded entities doesn't work correct.

Test Cases are here:
http://svn.automattic.com/wordpress-tests/wp-testcase/jacob/TestFormatting.php

The one that fails is:
{{{
    function test_ignores_existing_entities() {
        $source = '&#038; &#x00A3; &#022; &amp;';
        $res = '&amp; &#x00A3; &#022; &amp;';
        $this->assertEquals($res, wp_specialchars($source));
    }
}}}",defect (bug),closed,normal,2.8,Formatting,2.8,normal,fixed,,sambauers
