diff --git a/src/app/frontend/views/page/changeWithSize.php b/src/app/frontend/views/page/changeWithSize.php index 315126a..22fc3c6 100644 --- a/src/app/frontend/views/page/changeWithSize.php +++ b/src/app/frontend/views/page/changeWithSize.php @@ -6,12 +6,16 @@ if(isset($special_user)) { } else { $data['price'] = $item['price2']; } +$old_price = $data['price']; $data['price'] = $data['price']*(1-$discount/100); $data['price'] = number_format($data['price'], 2, '.', ' '); $data['html'] = '
'. $t->_("price") . - ' ' . $data['price'] . ' грн'; + '' . $old_price . ' грн +
+ ' . $data['price'] . ' грн +'; $data['html'] .= '
'; -- libgit2 0.21.4