Browse Source

<span> tags end with </span>, not </style> stupid!

stevetruckstuff 19 years ago
parent
commit
20e71360d8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      functions/mime.php

+ 2 - 2
functions/mime.php

@@ -313,9 +313,9 @@ function translateText(&$body, $wrap_at, $charset) {
         }
         }
 
 
         if ($quotes % 2) {
         if ($quotes % 2) {
-            $line = '<span class="quote1">' . $line . '</style>';
+            $line = '<span class="quote1">' . $line . '</span>';
         } elseif ($quotes) {
         } elseif ($quotes) {
-            $line = '<span class="quote2">' . $line . '</style>';
+            $line = '<span class="quote2">' . $line . '</span>';
         }
         }
 
 
         $body_ary[$i] = $line;
         $body_ary[$i] = $line;