fix a mistake with the table entry in sales/suspended list (#116)

This commit is contained in:
FrancescoUK
2016-02-27 22:21:04 +00:00
parent 0dce125f67
commit fc74708bf5

View File

@@ -31,18 +31,14 @@
</td>
<td><?php echo $suspended_sale['comment'];?></td>
<td>
<?php
echo form_open('sales/unsuspend');
<?php echo form_open('sales/unsuspend');
echo form_hidden('suspended_sale_id', $suspended_sale['sale_id']);
?>
<input type="submit" name="submit" value="<?php echo $this->lang->line('sales_unsuspend'); ?>" id="submit" class="btn btn-primary btn-xs pull-right"></td>
<?php
echo form_close();
?>
<input type="submit" name="submit" value="<?php echo $this->lang->line('sales_unsuspend'); ?>" id="submit" class="btn btn-primary btn-xs pull-right">
<?php echo form_close(); ?>
</td>
</tr>
<?php
}
?>
</table>