bugfix with &
This commit is contained in:
parent
04ea0ea00e
commit
57335ffb54
@ -40,7 +40,10 @@ class ICMLLoader {
|
||||
|
||||
protected function PrepareValue($text)
|
||||
{
|
||||
return $this->application->ConvertCharset($text, LANG_CHARSET, $this->encoding);
|
||||
$newText = $this->application->ConvertCharset($text, LANG_CHARSET, $this->encoding);
|
||||
$newText = strip_tags($newText);
|
||||
$newText = str_replace("&", "&", $newText);
|
||||
return $newText;
|
||||
}
|
||||
|
||||
protected function PrepareFile()
|
||||
|
Loading…
Reference in New Issue
Block a user