Merge branch 'master' of github.com:gnuboard/yc4s
This commit is contained in:
@ -208,8 +208,10 @@ include_once('./admin.head.php');
|
||||
<tr>
|
||||
<th scope="row"><label for="mb_zip1">주소</label></th>
|
||||
<td colspan="3" style="line-height:2em">
|
||||
<input type="text" name="mb_zip1" value="<?php echo $mb['mb_zip1'] ?>" id="mb_zip1" title="우편번호 앞자리" class="frm_input readonly" size="3" maxlength="3"> -
|
||||
<input type="text" name="mb_zip2" value="<?php echo $mb['mb_zip2'] ?>" id="mb_zip2" title="우편번호 뒷자리" class="frm_input readonly" size="3" maxlength="3">
|
||||
<label for="mb_zip1" class="sound_only">우편번호 앞자리</label>
|
||||
<input type="text" name="mb_zip1" value="<?php echo $mb['mb_zip1'] ?>" id="mb_zip1" class="frm_input readonly" size="3" maxlength="3"> -
|
||||
<label for="mb_zip2" class="sound_only">우편번호 뒷자리</label>
|
||||
<input type="text" name="mb_zip2" value="<?php echo $mb['mb_zip2'] ?>" id="mb_zip2" class="frm_input readonly" size="3" maxlength="3">
|
||||
<a href="<?php echo G5_BBS_URL ?>/zip.php?frm_name=fmember&frm_zip1=mb_zip1&frm_zip2=mb_zip2&frm_addr1=mb_addr1&frm_addr2=mb_addr2&frm_addr3=mb_addr3&frm_jibeon=mb_addr_jibeon" id="win_zip" class="win_zip_find btn_frmline" target="_blank">주소 검색</a><br>
|
||||
<input type="text" name="mb_addr1" value="<?php echo $mb['mb_addr1'] ?>" id="mb_addr1" class="frm_input readonly" size="60">
|
||||
<label for="mb_addr1">기본주소</label><br>
|
||||
|
||||
@ -52,10 +52,10 @@ if ($w == "")
|
||||
$html_title = "1단계분류추가";
|
||||
$ca['ca_use'] = 1;
|
||||
$ca['ca_explan_html'] = 1;
|
||||
$ca['ca_img_width'] = $default['de_mimg_width'];
|
||||
$ca['ca_img_height'] = $default['de_mimg_height'];
|
||||
$ca['ca_mobile_img_width'] = $default['de_mimg_width'];
|
||||
$ca['ca_mobile_img_height'] = $default['de_mimg_height'];
|
||||
$ca['ca_img_width'] = $default['de_simg_width'];
|
||||
$ca['ca_img_height'] = $default['de_simg_height'];
|
||||
$ca['ca_mobile_img_width'] = $default['de_simg_width'];
|
||||
$ca['ca_mobile_img_height'] = $default['de_simg_height'];
|
||||
$ca['ca_list_mod'] = 3;
|
||||
$ca['ca_list_row'] = 5;
|
||||
$ca['ca_mobile_list_mod'] = 10;
|
||||
|
||||
@ -1191,17 +1191,16 @@ if($default['de_iche_use'] || $default['de_vbank_use'] || $default['de_hp_use']
|
||||
$is_linux = false;
|
||||
|
||||
$exe = '/kcp/bin/';
|
||||
if($is_linux)
|
||||
$exe .= 'pp_cli';
|
||||
else
|
||||
if($is_linux) {
|
||||
if(PHP_INT_MAX == 2147483647) // 32-bit
|
||||
$exe .= 'pp_cli';
|
||||
else
|
||||
$exe .= 'pp_cli_x64';
|
||||
} else {
|
||||
$exe .= 'pp_cli_exe.exe';
|
||||
}
|
||||
|
||||
echo module_exec_check(G5_SHOP_PATH.$exe, 'pp_cli');
|
||||
|
||||
// 모바일 결제 모듈 체크
|
||||
if(defined('G5_USE_MOBILE') && G5_USE_MOBILE == true) {
|
||||
echo module_exec_check(G5_MSHOP_PATH.$exe, 'pp_cli');
|
||||
}
|
||||
}
|
||||
|
||||
include_once (G5_ADMIN_PATH.'/admin.tail.php');
|
||||
|
||||
Reference in New Issue
Block a user