Index: branches/5.2.x/units/product_options/product_options_tag_processor.php =================================================================== diff -u -N -r15312 -r15600 --- branches/5.2.x/units/product_options/product_options_tag_processor.php (.../product_options_tag_processor.php) (revision 15312) +++ branches/5.2.x/units/product_options/product_options_tag_processor.php (.../product_options_tag_processor.php) (revision 15600) @@ -1,6 +1,6 @@ GetID(), $options) ? $options[$object->GetID()] : ''; if ( $object->GetDBField('OptionType') == OptionType::CHECKBOX ) { - $selected = is_array($option_value) && in_array(htmlspecialchars($val), $option_value); + $selected = is_array($option_value) && in_array(htmlspecialchars($val, null, CHARSET), $option_value); } else { // radio buttons ? $selected = htmlspecialchars_decode($option_value) == $val;