발신번호 유효성 체크 추가

This commit is contained in:
chicpro
2015-10-15 11:55:05 +09:00
parent f0ae09f332
commit 1abad84115
2 changed files with 8 additions and 1 deletions

View File

@ -119,7 +119,10 @@ if(!isset($default['de_kakaopay_mid'])) {
<h2 class="h2_frm">사업자정보</h2>
<?php echo $pg_anchor; ?>
<div class="local_desc02 local_desc">
<p>사업자정보는 tail.php 와 content.php 에서 표시합니다.</p>
<p>
사업자정보는 tail.php 와 content.php 에서 표시합니다.<br>
대표전화번호는 SMS 발송번호로 사용되므로 사전등록된 발신번호와 일치해야 합니다.
</p>
</div>
<div class="tbl_frm01 tbl_wrap">

View File

@ -6,6 +6,10 @@ check_demo();
auth_check($auth[$sub_menu], "w");
// 대표전화번호 유효성 체크
if(!check_vaild_callback($_POST['de_admin_company_tel']))
alert('대표전화번호를 올바르게 입력해 주세요.');
// 로그인을 바로 이 주소로 하는 경우 쇼핑몰설정값이 사라지는 현상을 방지
if (!$_POST['de_admin_company_owner']) goto_url("./configform.php");