소스 검색

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

pecesama 16 년 전
부모
커밋
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