cubecart / v6

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

Unknown Variable #3500

Closed bhsmither closed 5 months ago

bhsmither commented 6 months ago

Again with PHP8.

In settings.language.inc.php, line 143 starts an array $modules.

However, on the odd chance there are no modules installed, line 149 is using a variable that did not come into existence.

Suggest either creating an empty array before the foreach, or assigning $modules ?? array() to Smarty.

abrookbanks commented 5 months ago

Thanks.