replace <br>,<br/> and <br />

This commit is contained in:
Sascha Kruse 2011-11-17 20:40:05 +01:00
parent b42153d158
commit 98d7d17ad5

View File

@ -343,6 +343,9 @@ char
/* remove tags */
str = string_replace("<b>", "", str);
str = string_replace("</b>", "", str);
str = string_replace("<br>", " ", str);
str = string_replace("<br/>", " ", str);
str = string_replace("<br />", " ", str);
str = string_replace("<i>", "", str);
str = string_replace("</i>", "", str);
str = string_replace("<u>", "", str);