영카트 5.4 버전 품절체크함수 상품코드에 하이픈이 들어갈시 품절 표시 오류 수정

This commit is contained in:
thisgun
2020-02-10 14:53:50 +09:00
parent 37937b7714
commit de5362bc10

View File

@ -1930,7 +1930,7 @@ function is_soldout($it_id, $is_cache=false)
static $cache = array(); static $cache = array();
$it_id = preg_replace('/[^a-z0-9_]/i', '', $it_id); $it_id = preg_replace('/[^a-z0-9_\-]/i', '', $it_id);
$key = md5($it_id); $key = md5($it_id);
if( $is_cache && isset($cache[$key]) ){ if( $is_cache && isset($cache[$key]) ){