diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:31:02 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:31:02 +0100 |
commit | ea41c8aa1951216b6a9ccc99832d69d2b41c5ead (patch) | |
tree | 57b8b39c7325217795e172cafb71e5f7e63fc563 /system/helpers/xml_helper.php | |
parent | 4247ed1c0fb588f968f18fd80a5f95debefc63f6 (diff) |
Don't use error suppression on realpath() + style adjustments
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); |