Procházet zdrojové kódy

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

pecesama před 17 roky
rodič
revize
f861ea764c
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. 3 0
      classes/gelato.class.php

+ 3 - 0
classes/gelato.class.php Zobrazit soubor

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