Index: branches/5.2.x/units/product_options/product_options_tag_processor.php =================================================================== diff -u -N -r15156 -r15312 --- branches/5.2.x/units/product_options/product_options_tag_processor.php (.../product_options_tag_processor.php) (revision 15156) +++ branches/5.2.x/units/product_options/product_options_tag_processor.php (.../product_options_tag_processor.php) (revision 15312) @@ -1,6 +1,6 @@ $val) { if ( !is_array($val) ) { - $val = kUtil::unhtmlentities($val); + $val = htmlspecialchars_decode($val); } $key_data = $opt_helper->ConvertKey($opt, $object->GetDBField('ProductId')); @@ -175,7 +175,7 @@ $i = 0; foreach ($values as $val) { $i++; - $val = kUtil::unhtmlentities($val); + $val = htmlspecialchars_decode($val); $block_params['value'] = htmlspecialchars($val); if ($price_types[$val] == '$') { $iso = $this->GetISO($params['currency']); Index: branches/5.2.x/units/orders/order_calculator.php =================================================================== diff -u -N -r15141 -r15312 --- branches/5.2.x/units/orders/order_calculator.php (.../order_calculator.php) (revision 15141) +++ branches/5.2.x/units/orders/order_calculator.php (.../order_calculator.php) (revision 15312) @@ -1,6 +1,6 @@