Code: Select all
admin/controller/module/bestseller.php
line 13
$this->model_setting_setting->editSetting('bestseller', $this->request->post['bestseller_status']);
$this->model_setting_setting->editSetting('bestseller', $this->request->post);
line 111
if (!$value['image_width'] || !$value['image_height']) {
if (!$value['width'] || !$value['height']) {
admin/.../module/latest.tpl
line 85
html += ' <td class="text-left"><input type="text" name="latest_module[' + token + '][width]" value="200" placeholder="<?php echo $entry_width; ?>" class="form-control" /> <input type="text" name="latest_module[' + token + '][image_height]" value="200" placeholder="<?php echo $entry_height; ?>" class="form-control" /></td>';
html += ' <td class="text-left"><input type="text" name="latest_module[' + token + '][width]" value="200" placeholder="<?php echo $entry_width; ?>" class="form-control" /> <input type="text" name="latest_module[' + token + '][height]" value="200" placeholder="<?php echo $entry_height; ?>" class="form-control" /></td>';