diff options
Diffstat (limited to 'system/helpers/xml_helper.php')
-rw-r--r-- | system/helpers/xml_helper.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/system/helpers/xml_helper.php b/system/helpers/xml_helper.php index 4c38b6988..5c1414b70 100644 --- a/system/helpers/xml_helper.php +++ b/system/helpers/xml_helper.php @@ -60,9 +60,11 @@ if ( ! function_exists('xml_convert')) $str = preg_replace('/&(\w+);/', $temp.'\\1;', $str); } - $str = str_replace(array('&', '<', '>', '"', "'", '-'), - array('&', '<', '>', '"', ''', '-'), - $str); + $str = str_replace( + array('&', '<', '>', '"', "'", '-'), + array('&', '<', '>', '"', ''', '-'), + $str + ); // Decode the temp markers back to entities $str = preg_replace('/'.$temp.'(\d+);/', '&#\\1;', $str); |