瀏覽代碼

remove the <p> and </p> wrong tags on formatConversation()

pecesama 17 年之前
父節點
當前提交
f861ea764c
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      classes/gelato.class.php

+ 3 - 0
classes/gelato.class.php 查看文件

@@ -120,6 +120,9 @@ class gelato extends Conexion_Mysql {
120 120
 			$formatedText .= "	</li>\n";			
121 121
 		}
122 122
 		$formatedText .= "</ul>\n";
123
+		// Ugly path fix it ASAP 
124
+		$formatedText = str_replace("<p>","", $formatedText);
125
+		$formatedText = str_replace("</p>","", $formatedText);
123 126
 		return $formatedText;
124 127
 	}
125 128