쇼핑몰관리자: 상품관리 목록 유효성 오류 정정

This commit is contained in:
whitedot
2013-05-13 17:37:22 +09:00
parent 7074f2231e
commit c5ce7155af
3 changed files with 6 additions and 6 deletions

View File

@ -673,7 +673,7 @@ function conv_selected_option($options, $value)
if(!$options)
return '';
$options = preg_replace('/(value=[\'\"]?'.$value.'[\'\"]?)/i', '\\1 selected="selected"', $options);
$options = preg_replace('/(value=[\'\"]?'.$value.'[\'\"]?)/i', '\\1 selected', $options);
return $options;
}