浏览代码

<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;