Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 3.7.2

Bug #12513 Checkstyle XML messages need to be utf8_encode()d
Submitted: 2007-11-23 16:10 UTC
From: sebastian Assigned: squiz
Status: Closed Package: PHP_CodeSniffer (version 1.0.0RC2)
PHP Version: 5.2.4 OS: Irrelevant
Roadmaps: 1.0.0, 1.0.0RC3    
Subscription  


 [2007-11-23 16:10 UTC] sebastian (Sebastian Bergmann)
Description: ------------ The patch below is required to make CruiseControl happy: CodeSniffer.php:722 -$message = htmlspecialchars($error['message']); +$message = utf8_encode(htmlspecialchars($error['message']));

Comments

 [2007-11-23 23:09 UTC] squiz (Greg Sherwood)
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better. Thanks for the patch.