Fixed mistake with Giftcard (#732)

This commit is contained in:
FrancescoUK
2016-07-12 16:59:23 +01:00
parent 39d678b977
commit c9d806bd26

View File

@@ -209,7 +209,7 @@ class Sales extends Secure_Controller
if(($cur_giftcard_value - $current_payments_with_giftcard) <= 0)
{
$data['error'] = $this->lang->line('giftcards_remaining_balance', $giftcard_num, to_currency(cur_giftcard_value));
$data['error'] = $this->lang->line('giftcards_remaining_balance', $giftcard_num, to_currency($cur_giftcard_value));
}
else
{