conv: give function EscapeHtml much more appropriate name (StripHtmlTags)

This commit is contained in:
Andrzej Rybczak
2010-08-09 13:51:01 +02:00
parent 2eddb37497
commit 3b92484755
4 changed files with 6 additions and 6 deletions

View File

@@ -206,7 +206,7 @@ void EscapeUnallowedChars(std::string &s)
}
}
void EscapeHtml(std::string &s)
void StripHtmlTags(std::string &s)
{
bool erase = 0;
for (size_t i = s.find("<"); i != std::string::npos; i = s.find("<"))