Merge branch 'ent-6411-modulos-con-caracteres-extraños-se-duplican' into 'develop'
Ent 6411 modulos con caracteres extraños se duplican See merge request artica/pandorafms!3586
This commit is contained in:
commit
16ada0c567
|
@ -116,6 +116,13 @@ function io_safe_input($value)
|
|||
// TICKET: 1223
|
||||
$valueHtmlEncode = str_replace('°', '°', $valueHtmlEncode);
|
||||
|
||||
// Fixed the ¿ charater.
|
||||
$valueHtmlEncode = str_replace('¿', '¿', $valueHtmlEncode);
|
||||
// Fixed the ¡ charater.
|
||||
$valueHtmlEncode = str_replace('¡', '¡', $valueHtmlEncode);
|
||||
// Fixed the € charater.
|
||||
$valueHtmlEncode = str_replace('€', '€', $valueHtmlEncode);
|
||||
|
||||
// Replace some characteres for html entities
|
||||
for ($i = 0; $i < 33; $i++) {
|
||||
$valueHtmlEncode = str_ireplace(
|
||||
|
|
Loading…
Reference in New Issue