cubecart / v6

CubeCart Version 6
https://cubecart.com
72 stars 59 forks source link

Uncountable Smarty Variable $CURRENCIES #3476

Closed bhsmither closed 7 months ago

bhsmither commented 7 months ago

Given the situation that no currencies are enabled, the template box.currency.php faults with {$CURRENCIES} being null, thus not countable.

Suggest wrapping the entire box in:

{if is_array($CURRENCIES)}
......
{/if}
abrookbanks commented 7 months ago

Thank you.