mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 09:15:15 +02:00
Fixed special characters
This commit is contained in:
parent
495decdf5f
commit
785e187f5c
@ -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…
x
Reference in New Issue
Block a user