Merge branch '1223-Entidades-pendientes-dev' into 'develop'
Added degree in io_safe_input See merge request !805
This commit is contained in:
commit
813825a5be
|
@ -102,14 +102,15 @@ function io_safe_input($value) {
|
|||
// Replace ( for the html entitie
|
||||
$valueHtmlEncode = str_replace(')', ")", $valueHtmlEncode);
|
||||
|
||||
$valueHtmlEncode = str_replace(')', ")", $valueHtmlEncode);
|
||||
|
||||
|
||||
// Fixed the º character, because the Perl in the Pandora Server
|
||||
// use the hex value instead the human readble.
|
||||
// TICKET: #1495
|
||||
$valueHtmlEncode = str_replace('º', "º", $valueHtmlEncode);
|
||||
|
||||
// Fixed the ° character.
|
||||
// TICKET: 1223
|
||||
$valueHtmlEncode = str_replace('°', "°", $valueHtmlEncode);
|
||||
|
||||
|
||||
//Replace some characteres for html entities
|
||||
|
|
Loading…
Reference in New Issue