Github issue #51

Fixed " entity referece
This commit is contained in:
Phil Nash 2011-09-30 08:04:54 +01:00
parent 6e74b5c7ed
commit f7e2777665
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ namespace Catch
// !TBD finish this
if( !findReplaceableString( text, "<", "&lt;" ) &&
!findReplaceableString( text, "&", "&amp;" ) &&
!findReplaceableString( text, "\"", "&quote;" ) )
!findReplaceableString( text, "\"", "&quot;" ) )
{
stream() << text;
}