Преглед на файлове

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