Administrator
- Join Date:
- Feb 2006
- Location:
- Tampa Bay, Florida
- Posts:
- 10,682
- Plugin Contributions:
- 56
zen_output_string_protected calls on attribute values with inches character (")
On pages that use zen_output_string_protected() to display attribute values such as the admin orders page and the checkout confirmation page, values that contain the " sign are shown as "
One possible fix would be to do a replace in zen_output_string before calling htmlspecialchars in includes/functions/functions_general.php
function zen_output_string($string, $translate = false, $protected = false) {
if ($protected == true) {
$string = str_replace(""", '"', $string);
return htmlspecialchars($string, ENT_COMPAT, CHARSET, TRUE);
} else {
...
Thoughts?