ソースを参照

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

stevetruckstuff 19 年 前
コミット
20e71360d8
1 ファイル変更2 行追加2 行削除
  1. 2 2
      functions/mime.php

+ 2 - 2
functions/mime.php

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