mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +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
|
// TICKET: 1223
|
||||||
$valueHtmlEncode = str_replace('°', '°', $valueHtmlEncode);
|
$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
|
// Replace some characteres for html entities
|
||||||
for ($i = 0; $i < 33; $i++) {
|
for ($i = 0; $i < 33; $i++) {
|
||||||
$valueHtmlEncode = str_ireplace(
|
$valueHtmlEncode = str_ireplace(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user