Skip to content

Commit

Permalink
Item12388: Revert change from apos to rsquo
Browse files Browse the repository at this point in the history
Seems to break 33 unit tests.  All pass using apos as the placeholder.
  • Loading branch information
gac410 committed Jan 22, 2015
1 parent a1aede1 commit 2690696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WysiwygPlugin/lib/Foswiki/Plugins/WysiwygPlugin/HTML2TML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ DEFAULT
$text =~ s/\&\#x3c;/\</goi;
$text =~ s/\&\#62;/\>/go;
$text =~ s/\&\#x3e;/\>/goi;
$text =~ s/\&\#39;/\’/go;
$text =~ s/\&\#x27;/\’/goi;
$text =~ s/\&\#39;/\'/go;
$text =~ s/\&\#x27;/\'/goi;
$text =~ s/\&\#34;/\"/go;
$text =~ s/\&\#x22;/\"/goi;
$text =~ s/\&\#160;/\ /goi;
Expand Down

0 comments on commit 2690696

Please sign in to comment.