Annotation of embedaddon/php/ext/standard/tests/strings/bug40704.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #40704 (strip_tags() does not handle single quotes correctly)
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: $html = "<div>Bug ' Trigger</div> Missing Text";
        !             7: var_dump(strip_tags($html));
        !             8: 
        !             9: echo "Done\n";
        !            10: ?>
        !            11: --EXPECT--     
        !            12: string(26) "Bug ' Trigger Missing Text"
        !            13: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>