Summary:
Typo ( causing problems with currency symbol
Detailed Description:
If you set attributes, the display of the attribute dropdown will read
"[attrib-name] (($currency_symbol}x.xx)"
It looks like this is caused by
Line 49 of CGEcommerceBase.module.php
define('CGECOMB_ATTRIB_ITEM_DESCRIPTION','{$attrib_text}
(($currency_symbol}{$attrib_adjust|number_format:2})');
Should be:
define('CGECOMB_ATTRIB_ITEM_DESCRIPTION','{$attrib_text}
({$currency_symbol}{$attrib_adjust|number_format:2})');
But that does not fix the display - does CGCommerceBase need to be reinstalled
to effect change?