I am using Opencart 1.5.1 but have a theme made for 1.4.9.
The following template code won't work with 1.5.1:
<?php foreach ($modules as $module) { ?>
<?php echo $module; ?>
<?php } ?>
Undefined variable: modules.
Invalid argument supplied for foreach().
What do I replace it with to work in 1.5.1? Thanks.