瀏覽代碼

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

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

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

120
 			$formatedText .= "	</li>\n";			
120
 			$formatedText .= "	</li>\n";			
121
 		}
121
 		}
122
 		$formatedText .= "</ul>\n";
122
 		$formatedText .= "</ul>\n";
123
+		// Ugly path fix it ASAP 
124
+		$formatedText = str_replace("<p>","", $formatedText);
125
+		$formatedText = str_replace("</p>","", $formatedText);
123
 		return $formatedText;
126
 		return $formatedText;
124
 	}
127
 	}
125
 	
128