1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

Issue #3307 Issue #3385 Testing required. "+" sign encoding.

This commit is contained in:
Cameron
2018-08-17 14:56:57 -07:00
parent 1d96846002
commit e9ddd09766
2 changed files with 3 additions and 3 deletions

View File

@@ -841,7 +841,7 @@ class e_parse extends e_parser
{
$text = stripslashes($text);
}
return str_replace(array("'", '"', "<", ">", '+'), array("&#039;", "&quot;", "&lt;", "&gt;", '%2B'), $text);
return str_replace(array("'", '"', "<", ">"), array("&#039;", "&quot;", "&lt;", "&gt;"), $text);
}