Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
get_sendcost 함수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chicpro committed Feb 29, 2016
1 parent 9d00bcf commit 09080bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shop.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ function get_sendcost($cart_id, $selected=1)
}

$send_cost = 0;
if($default['de_send_cost_case'] == '차등' && $total_price > 0) {
if($default['de_send_cost_case'] == '차등' && $total_price >= 0) {
// 금액별차등 : 여러단계의 배송비 적용 가능
$send_cost_limit = explode(";", $default['de_send_cost_limit']);
$send_cost_list = explode(";", $default['de_send_cost_list']);
Expand Down

0 comments on commit 09080bf

Please sign in to comment.