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/27 05:43:50 UTC

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

Author: quinlan
Date: Thu Feb 26 20:43:49 2004
New Revision: 6896

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/HTML.pm
Log:
add line break for <div> tag


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	Thu Feb 26 20:43:49 2004
@@ -218,7 +218,7 @@
   my ($self, $tag, $attr, $num) = @_;
 
   # ordered by frequency of tag groups
-  if ($tag eq "br") {
+  if ($tag eq "br" || $tag eq "div") {
     push @{$self->{html_text}}, "\n";
   }
   elsif ($tag eq "li" || $tag eq "td" || $tag eq "dd") {
@@ -459,7 +459,7 @@
   teal => 0x008080,
   white => 0xffffff,
   yellow => 0xffff00,
-  # X11 colors specified in CSS3 color module
+  # colors specified in CSS3 color module
   aliceblue => 0xf0f8ff,
   antiquewhite => 0xfaebd7,
   aqua => 0x00ffff,