You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by qu...@apache.org on 2004/02/11 07:21:51 UTC

svn commit: rev 6612 - incubator/spamassassin/trunk/lib/Mail/SpamAssassin

Author: quinlan
Date: Tue Feb 10 22:21:51 2004
New Revision: 6612

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/HTML.pm
Log:
trivial spacing change


Modified: incubator/spamassassin/trunk/lib/Mail/SpamAssassin/HTML.pm
==============================================================================
--- incubator/spamassassin/trunk/lib/Mail/SpamAssassin/HTML.pm	(original)
+++ incubator/spamassassin/trunk/lib/Mail/SpamAssassin/HTML.pm	Tue Feb 10 22:21:51 2004
@@ -121,7 +121,7 @@
 
   # HTML::Parser 3.31, at least, converts   into a question mark "?" for some reason.
   # Let's convert them to spaces.
-  $text=~s/ / /g;
+  $text =~ s/ / /g;
 
   my $hp = HTML::Parser->new(
 		api_version => 3,