Merge branch 'master' of github.com:gnuboard/yc4s

This commit is contained in:
whitedot
2013-05-09 18:26:11 +09:00
2 changed files with 12 additions and 7 deletions

View File

@ -122,7 +122,7 @@ $item_relation_count = $row['cnt'];
?> ?>
<?php <?php
function pg_anchor($anc_id) { function pg_anchor_m($anc_id) {
global $default; global $default;
?> ?>
<ul class="sanchor"> <ul class="sanchor">
@ -378,7 +378,7 @@ else
<section id="sit_inf"> <section id="sit_inf">
<h2>상품 정보</h2> <h2>상품 정보</h2>
<?php echo pg_anchor('inf'); ?> <?php echo pg_anchor_m('inf'); ?>
<?php if ($it['it_basic']) { // 상품 기본설명 ?> <?php if ($it['it_basic']) { // 상품 기본설명 ?>
<div id="sit_inf_basic"> <div id="sit_inf_basic">
@ -423,7 +423,7 @@ else
<section id="sit_ps"> <section id="sit_ps">
<h2>사용후기</h2> <h2>사용후기</h2>
<?php echo pg_anchor('ps'); ?> <?php echo pg_anchor_m('ps'); ?>
<?php <?php
$use_page_rows = 10; // 페이지당 목록수 $use_page_rows = 10; // 페이지당 목록수
@ -433,7 +433,7 @@ else
<section id="sit_qna"> <section id="sit_qna">
<h2>상품문의</h2> <h2>상품문의</h2>
<?php echo pg_anchor('qna'); ?> <?php echo pg_anchor_m('qna'); ?>
<?php <?php
$qa_page_rows = 10; // 페이지당 목록수 $qa_page_rows = 10; // 페이지당 목록수
@ -445,7 +445,7 @@ else
<?php if ($default['de_baesong_content']) { // 배송정보 내용이 있다면 ?> <?php if ($default['de_baesong_content']) { // 배송정보 내용이 있다면 ?>
<section id="sit_dvr"> <section id="sit_dvr">
<h2>배송정보</h2> <h2>배송정보</h2>
<?php echo pg_anchor('dvr'); ?> <?php echo pg_anchor_m('dvr'); ?>
<?php echo conv_content($default['de_baesong_content'], 1); ?> <?php echo conv_content($default['de_baesong_content'], 1); ?>
</section> </section>
@ -455,7 +455,7 @@ else
<?php if ($default['de_change_content']) { // 교환/반품 내용이 있다면 ?> <?php if ($default['de_change_content']) { // 교환/반품 내용이 있다면 ?>
<section id="sit_ex"> <section id="sit_ex">
<h2>교환/반품</h2> <h2>교환/반품</h2>
<?php echo pg_anchor('ex'); ?> <?php echo pg_anchor_m('ex'); ?>
<?php echo conv_content($default['de_change_content'], 1); ?> <?php echo conv_content($default['de_change_content'], 1); ?>
</section> </section>
@ -463,7 +463,7 @@ else
<section id="sit_rel"> <section id="sit_rel">
<h2>관련상품</h2> <h2>관련상품</h2>
<?php echo pg_anchor('rel'); ?> <?php echo pg_anchor_m('rel'); ?>
<div class="sct_wrap"> <div class="sct_wrap">
<?php <?php

View File

@ -1,6 +1,11 @@
<?php <?php
include_once('./_common.php'); include_once('./_common.php');
if (G4_IS_MOBILE) {
include_once(G4_MSHOP_PATH.'/largeimage.php');
return;
}
$it_id = $_GET['it_id']; $it_id = $_GET['it_id'];
$img = $_GET['img']; $img = $_GET['img'];