anyone else have this problem?
works fine for me.
maybe you deleted all your layouts.
I can confirm this bug, see attached screenshot.
screenshot-carousel.png (36.95 KiB) Viewed 5282 times
And here is the fix:
In file admin/view/template/module/carousel.tpl, after the line containing
Code: Select all
html += ' <td class="left"><input type="text" name="carousel_module[' + module_row + '][width]" value="80" size="3" /> <input type="text" name="carousel_module[' + module_row + '][height]" value="80" size="3" /></td>';
add this:
Code: Select all
html += ' <td class="left"><select name="carousel_module[' + module_row + '][layout_id]">';
<?php foreach ($layouts as $layout) { ?>
html += ' <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>';
<?php } ?>
html += ' </select></td>';