Merge branch 'php81-jw'
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
include_once('./_common.php');
|
||||
if (!defined('_SHOP_COMMON_')) exit; // 모바일 페이지로 직접 접근하는 것을 막음
|
||||
|
||||
$ev_id = isset($_GET['ev_id']) ? (int) $_GET['ev_id'] : 0;
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@ $sql = " select count(*) as cnt
|
||||
$row = sql_fetch($sql);
|
||||
$total_count = $row['cnt'];
|
||||
|
||||
$rows = $config['cf_page_rows'];
|
||||
$rows = $config['cf_mobile_page_rows'];
|
||||
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
|
||||
if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
|
||||
$from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
|
||||
@ -40,7 +40,7 @@ $sql = " select count(*) as cnt
|
||||
$row = sql_fetch($sql);
|
||||
$total_count = $row['cnt'];
|
||||
|
||||
$rows = $config['cf_page_rows'];
|
||||
$rows = $config['cf_mobile_page_rows'];
|
||||
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
|
||||
if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
|
||||
$from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// 해당 페이지는 사용자가 ISP{국민/BC) 카드 결제를 성공하였을 때, 사용자에게 보여지는 페이지입니다.
|
||||
include_once('./_common.php');
|
||||
|
||||
$LGD_OID = $_GET['LGD_OID'];
|
||||
$LGD_OID = clean_xss_tags($_GET['LGD_OID']);
|
||||
|
||||
echo "LGD_OID = ".$LGD_OID;
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 mypage.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_mypage_file = G5_THEME_MSHOP_PATH.'/mypage.php';
|
||||
if(is_file($theme_mypage_file)) {
|
||||
include_once($theme_mypage_file);
|
||||
|
||||
@ -49,7 +49,7 @@ if ($total_count == 0)
|
||||
alert('주문이 존재하지 않습니다.');
|
||||
}
|
||||
|
||||
$rows = $config['cf_page_rows'];
|
||||
$rows = $config['cf_mobile_page_rows'];
|
||||
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
|
||||
if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
|
||||
$from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
|
||||
@ -4,7 +4,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
if (!defined("_ORDERINQUIRY_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// 테마에 orderinquiry.sub.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_inquiry_file = G5_THEME_MSHOP_PATH.'/orderinquiry.sub.php';
|
||||
if(is_file($theme_inquiry_file)) {
|
||||
include_once($theme_inquiry_file);
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 orderinquiryview.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_inquiryview_file = G5_THEME_MSHOP_PATH.'/orderinquiryview.php';
|
||||
if(is_file($theme_inquiryview_file)) {
|
||||
include_once($theme_inquiryview_file);
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 wishlist.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_wishlist_file = G5_THEME_MSHOP_PATH.'/wishlist.php';
|
||||
if(is_file($theme_wishlist_file)) {
|
||||
include_once($theme_wishlist_file);
|
||||
|
||||
@ -12,7 +12,8 @@ add_stylesheet('<link rel="stylesheet" href="' . $member_skin_url . '/style.css"
|
||||
<fieldset id="info_fs">
|
||||
<p>새로운 비밀번호를 입력해주세요.</p>
|
||||
<label for="mb_id" class="sound_only">아이디</label>
|
||||
<input type="text" name="mb_id" id="mb_id" value="<?php echo $_POST['mb_id']; ?>" required class="required frm_input full_input" size="30" placeholder="아이디" readonly>
|
||||
<br>
|
||||
<b>회원 아이디 : <?php echo $_POST['mb_id']; ?></b>
|
||||
<label for="mb_pw" class="sound_only">새 비밀번호<strong class="sound_only">필수</strong></label>
|
||||
<input type="password" name="mb_password" id="mb_pw" required class="required frm_input full_input" size="30" placeholder="새 비밀번호">
|
||||
<label for="mb_pw2" class="sound_only">새 비밀번호 확인<strong class="sound_only">필수</strong></label>
|
||||
|
||||
@ -47,6 +47,8 @@ if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipi
|
||||
<ul>
|
||||
<li>
|
||||
<?php
|
||||
$desc_name = '';
|
||||
$desc_phone = '';
|
||||
if ($config['cf_cert_use']) {
|
||||
$desc_name = ' - 본인확인 시 자동입력';
|
||||
$desc_phone = ' - 본인확인 시 자동입력';
|
||||
|
||||
Reference in New Issue
Block a user