From 8629ed963d165111e8ee4739ad036cd693e216e4 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 29 Apr 2013 19:21:05 +0900 Subject: [PATCH 01/17] =?UTF-8?q?bo=5Fuse=5Fcert=20=EC=9D=98=20default=20?= =?UTF-8?q?=EB=A5=BC=20none=20=EB=8C=80=EC=8B=A0=20=EA=B3=B5=EB=B0=B1?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/gnuboard4s.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/gnuboard4s.sql b/install/gnuboard4s.sql index 921665d7f..3b24e1ebc 100644 --- a/install/gnuboard4s.sql +++ b/install/gnuboard4s.sql @@ -96,7 +96,7 @@ CREATE TABLE IF NOT EXISTS `g4s_board` ( `bo_notice` text NOT NULL, `bo_upload_count` tinyint(4) NOT NULL default '0', `bo_use_email` tinyint(4) NOT NULL default '0', - `bo_use_cert` enum('','cert','adult') NOT NULL DEFAULT 'none', + `bo_use_cert` enum('','cert','adult') NOT NULL DEFAULT '', `bo_sort_field` varchar(255) NOT NULL default '', `bo_1_subj` varchar(255) NOT NULL default '', `bo_2_subj` varchar(255) NOT NULL default '', From 56d9c227903879c36b6573496d6eef6027e03984 Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 30 Apr 2013 10:42:20 +0900 Subject: [PATCH 02/17] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=95=84?= =?UTF-8?q?=EC=9B=83=EB=A1=9C=EA=B7=B8=EC=9D=B8=EC=8A=A4=ED=82=A8=20?= =?UTF-8?q?=EB=A7=81=ED=81=AC=20=EA=B0=84=EA=B2=A9=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/outlogin/basic/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/skin/outlogin/basic/style.css b/skin/outlogin/basic/style.css index 143c1f590..8f9d777aa 100644 --- a/skin/outlogin/basic/style.css +++ b/skin/outlogin/basic/style.css @@ -16,6 +16,7 @@ #ol_submit {display:inline-block;width:60px;height:24px;border:0;background:#333;color:#fff;font-size:0.9em;font-weight:bold;vertical-align:top} #ol_before a {letter-spacing:-0.15em} #ol_svc {float:left;margin:5px 0 0} +#ol_password_lost {display:inline-block;margin:0 0 0 5px} #ol_auto {position:relative;float:right;margin:5px 0 0} #ol_auto label {letter-spacing:-0.1em} #ol_auto input {width:13px;height:13px;vertical-align:bottom} From 094ab17a3608868879380ae78de898b9134f3514 Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 30 Apr 2013 10:54:46 +0900 Subject: [PATCH 03/17] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20web-kit-ap?= =?UTF-8?q?pearance=20=EB=B3=B5=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/default.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/css/default.css b/css/default.css index ad455d0e1..cdd76e26c 100644 --- a/css/default.css +++ b/css/default.css @@ -9,11 +9,7 @@ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, header ul, nav ul, footer ul {margin:0;padding:0;list-style:none} label, input, select, img {vertical-align:middle} input {margin:0;padding:0;border-radius:0;font-family:"dotum"} -input[type=text], -input[type=password], -input[type=submit], -input[type=image] {-webkit-appearance:none} -button {border-radius:0;font-size:1em;-webkit-appearance:none} +button {border-radius:0;font-size:1em} p {margin:0;padding:10px 0;line-height:1.7em;word-break:break-all} hr {display:none} pre {overflow-x:scroll;font-size:1.1em} From 29bb608a4520c3e64ed17468250ef87b2cf4e1cd Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:37:13 +0900 Subject: [PATCH 04/17] =?UTF-8?q?=EC=B6=94=EC=B2=9C=EC=9D=B8=20=EA=B2=80?= =?UTF-8?q?=EC=82=AC=20=EC=BD=94=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/jquery.register_form.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/js/jquery.register_form.js b/js/jquery.register_form.js index ea6068020..223a58560 100644 --- a/js/jquery.register_form.js +++ b/js/jquery.register_form.js @@ -16,6 +16,25 @@ var reg_mb_id_check = function() { } +// 추천인 검사 +var reg_mb_recommend_check = function() { + var result = ""; + $.ajax({ + type: "POST", + url: g4_bbs_url+"/ajax.mb_recommend.php", + data: { + "reg_mb_recommend": encodeURIComponent($("#reg_mb_recommend").val()) + }, + cache: false, + async: false, + success: function(data) { + result = data; + } + }); + return result; +} + + var reg_mb_nick_check = function() { var result = ""; $.ajax({ From 7b1a799a72b0cb37493794edad94622d9c05de2f Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:37:45 +0900 Subject: [PATCH 05/17] =?UTF-8?q?=EC=BA=A1=EC=B1=A0=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=9D=BC=EA=B4=84=EC=82=AD=EC=A0=9C=20=EB=A9=94=EB=89=B4=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/admin.menu100.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/adm/admin.menu100.php b/adm/admin.menu100.php index dfc91e73b..d65cb8fbf 100644 --- a/adm/admin.menu100.php +++ b/adm/admin.menu100.php @@ -7,7 +7,8 @@ $menu['menu100'] = array ( //array('100400', '버전정보', G4_ADMIN_URL.'/version.php', 'cf_version'), array('100800', '세션파일 일괄삭제',G4_ADMIN_URL.'/session_file_delete.php', 'cf_session', 1), array('100900', '캐쉬파일 일괄삭제',G4_ADMIN_URL.'/cache_file_delete.php', 'cf_cache', 1), - array('100920', '썸네일파일 일괄삭제',G4_ADMIN_URL.'/thumbnail_file_delete.php', 'cf_cache', 1), + array('100910', '캡챠파일 일괄삭제',G4_ADMIN_URL.'/gcaptcha_file_delete.php', 'cf_captcha', 1), + array('100920', '썸네일파일 일괄삭제',G4_ADMIN_URL.'/thumbnail_file_delete.php', 'cf_thumbnail', 1), array('100500', 'phpinfo()', G4_ADMIN_URL.'/phpinfo.php', 'cf_phpinfo'), //array('100600', '업그레이드', G4_ADMIN_URL.'/upgrade.php', 'cf_upgrade'), //array('100700', '복구/최적화', G4_ADMIN_URL.'/repair.php', 'cf_repair'), From 5a8fd327a90535a531652d01d3619cc75556b205 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:42:34 +0900 Subject: [PATCH 06/17] =?UTF-8?q?bo=5Fuse=5Fcert=20enum=20=ED=95=AD?= =?UTF-8?q?=EB=AA=A9=EC=97=90=EC=84=9C=20none=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_form.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/adm/board_form.php b/adm/board_form.php index d9affee10..f090ceed7 100644 --- a/adm/board_form.php +++ b/adm/board_form.php @@ -46,9 +46,11 @@ if (!isset($board['bo_mobile_content_head'])) { } if (!isset($board['bo_use_cert'])) { - sql_query(" ALTER TABLE `{$g4['board_table']}` ADD `bo_use_cert` ENUM('','cert','adult') NOT NULL DEFAULT 'none' AFTER `bo_use_email` ", false); + sql_query(" ALTER TABLE `{$g4['board_table']}` ADD `bo_use_cert` ENUM('','cert','adult') NOT NULL DEFAULT '' AFTER `bo_use_email` ", false); } +sql_query(" ALTER TABLE `{$g4['board_table']}` CHANGE `bo_use_cert` `bo_use_cert` ENUM('','cert','adult') NOT NULL DEFAULT '' ", false); + $required = ""; $readonly = ""; if ($w == '') { From 3401866e75c03064751972c1ec614fb107bd6b38 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:49:54 +0900 Subject: [PATCH 07/17] =?UTF-8?q?=EC=B6=94=EC=B2=9C=EC=9D=B8=20=EA=B4=80?= =?UTF-8?q?=EB=A0=A8=20=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/register_form_update.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php index 297be4d4f..7cc1039f4 100644 --- a/bbs/register_form_update.php +++ b/bbs/register_form_update.php @@ -75,6 +75,8 @@ if ($w == '' || $w == 'u') { if ($w=='') { if ($msg = exist_mb_id($mb_id)) alert($msg); + if (!exist_mb_id($mb_recommend)) alert("추천인이 존재하지 않습니다."); + if (strtolower($mb_id) == strtolower($mb_recommend)) { alert('본인을 추천할 수 없습니다.'); } From 70d0e5b96e93aa7c215d80c971e4517460a77b89 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:51:19 +0900 Subject: [PATCH 08/17] =?UTF-8?q?=EC=84=A4=EC=B9=98=EA=B4=80=EB=A0=A8=20?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.php b/common.php index 37d8abf89..ce258eb7b 100644 --- a/common.php +++ b/common.php @@ -119,7 +119,7 @@ div a {display:block;margin:50px auto 10px;width:170px;text-align:center}
  • 프로그램 설치 후 실행하시기 바랍니다.

    - 그누보드4s 설치하기 + 그누보드4s 설치하기 From f32df6be5b79fa9050f5c715eb4083ef5709deb7 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:52:43 +0900 Subject: [PATCH 09/17] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EC=95=84=EC=9D=B4?= =?UTF-8?q?=EB=94=94=20=EB=84=98=EC=96=B4=EC=98=A4=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EC=9D=84=20=EA=B2=BD=EC=9A=B0=EB=8A=94=20=EC=BF=BC=EB=A6=AC=20?= =?UTF-8?q?=EC=8B=A4=ED=96=89=ED=95=98=EC=A7=80=20=EC=95=8A=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/register.lib.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/register.lib.php b/lib/register.lib.php index 7d5d0309d..eabe40c86 100644 --- a/lib/register.lib.php +++ b/lib/register.lib.php @@ -28,6 +28,10 @@ function count_mb_id($reg_mb_id) function exist_mb_id($reg_mb_id) { global $g4; + + $reg_mb_id = trim($reg_mb_id); + if ($reg_mb_id == "") return ""; + $sql = " select count(*) as cnt from `{$g4['member_table']}` where mb_id = '$reg_mb_id' "; $row = sql_fetch($sql); if ($row['cnt']) From ab0d6dee1b946a016ab13648916f70530e5178e2 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:53:33 +0900 Subject: [PATCH 10/17] =?UTF-8?q?=EC=B6=94=EC=B2=9C=EC=9D=B8=EC=9D=B4=20?= =?UTF-8?q?=EC=98=AC=EB=B0=94=EB=A5=B8=EC=A7=80=20=EA=B2=80=EC=82=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/member/basic/register_form.skin.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/skin/member/basic/register_form.skin.php b/skin/member/basic/register_form.skin.php index ee8ee5d1d..97f47a0e3 100644 --- a/skin/member/basic/register_form.skin.php +++ b/skin/member/basic/register_form.skin.php @@ -343,6 +343,13 @@ function fregisterform_submit(f) f.mb_recommend.focus(); return false; } + + var msg = reg_mb_recommend_check(); + if (msg) { + alert(msg); + f.mb_recommend.select(); + return false; + } } From 5358ead7912945e3f2d858e44f27933c0df1a79f Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 11:59:04 +0900 Subject: [PATCH 11/17] =?UTF-8?q?=EC=B6=94=EC=B2=9C=EC=9D=B8=20=EA=B2=80?= =?UTF-8?q?=EC=82=AC=20ajax=20=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/ajax.mb_recommend.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bbs/ajax.mb_recommend.php diff --git a/bbs/ajax.mb_recommend.php b/bbs/ajax.mb_recommend.php new file mode 100644 index 000000000..99c42480e --- /dev/null +++ b/bbs/ajax.mb_recommend.php @@ -0,0 +1,13 @@ + \ No newline at end of file From 11ffa1f16a554b41d9d50d39407bfce698053c97 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 13:31:41 +0900 Subject: [PATCH 12/17] =?UTF-8?q?php=20notice=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/install_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install_config.php b/install/install_config.php index aca962e4f..aa41dd057 100644 --- a/install/install_config.php +++ b/install/install_config.php @@ -10,7 +10,7 @@ $title = "그누보드4s 설치 3단계 중 2단계 설정"; include_once ('../config.php'); include_once ('./install.inc.php'); -if ($_POST['agree'] != '동의함') { +if (isset($_POST['agree']) && $_POST['agree'] != '동의함') { echo "
    라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다.
    ".PHP_EOL; echo "".PHP_EOL; exit; From 68c465672e17e54aa2cbc6fbb9ff1908b5dda567 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 13:38:50 +0900 Subject: [PATCH 13/17] =?UTF-8?q?=EB=94=B0=EC=98=B4=ED=91=9C=EB=93=B1?= =?UTF-8?q?=EC=9D=98=20=EB=AC=B8=EC=A0=9C=EB=A1=9C=20=EC=9D=B8=ED=95=98?= =?UTF-8?q?=EC=97=AC=20mysql=5Freal=5Fescape=5Fstring=20=ED=95=B4=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/write_update.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bbs/write_update.php b/bbs/write_update.php index 2f65e9a4b..914e7bfe9 100644 --- a/bbs/write_update.php +++ b/bbs/write_update.php @@ -8,7 +8,7 @@ $msg = array(); $wr_subject = ''; if (isset($_POST['wr_subject'])) { - $wr_subject = substr(escape_trim($_POST['wr_subject']),0,255); + $wr_subject = substr(trim($_POST['wr_subject']),0,255); } if ($wr_subject == '') { $msg[] = '제목을 입력하세요.'; @@ -16,7 +16,7 @@ if ($wr_subject == '') { $wr_content = ''; if (isset($_POST['wr_content'])) { - $wr_content = escape_trim($_POST['wr_content']); + $wr_content = substr(trim($_POST['wr_content']),0,65536); } if ($wr_content == '') { $msg[] = '내용을 입력하세요.'; @@ -24,12 +24,12 @@ if ($wr_content == '') { $wr_link1 = ''; if (isset($_POST['wr_link1'])) { - $wr_link1 = substr(escape_trim($_POST['wr_link1']),0,1000); + $wr_link1 = substr($_POST['wr_link1'],0,1000); } $wr_link2 = ''; if (isset($_POST['wr_link2'])) { - $wr_link2 = substr(escape_trim($_POST['wr_link2']),0,1000); + $wr_link2 = substr($_POST['wr_link2'],0,1000); } $msg = implode('
    ', $msg); From 4ed5542a5d3e3efc66a3dcaa8c060de01abd4b3e Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 13:39:13 +0900 Subject: [PATCH 14/17] =?UTF-8?q?=3F>=20=EC=95=9E=EC=97=90=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=20=ED=95=9C=EA=B0=9C=EB=A1=9C=20=EC=A1=B0=EC=A0=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/board/basic/list.skin.php | 52 ++++++++++++------------ skin/board/basic/view.skin.php | 46 ++++++++++----------- skin/board/basic/view_comment.skin.php | 32 +++++++-------- skin/board/basic/write.skin.php | 40 +++++++++--------- skin/board/gallery/list.skin.php | 50 +++++++++++------------ skin/board/gallery/view.skin.php | 46 ++++++++++----------- skin/board/gallery/view_comment.skin.php | 30 +++++++------- skin/board/gallery/write.skin.php | 40 +++++++++--------- 8 files changed, 168 insertions(+), 168 deletions(-) diff --git a/skin/board/basic/list.skin.php b/skin/board/basic/list.skin.php index 4f7b0531c..5bd5500d8 100644 --- a/skin/board/basic/list.skin.php +++ b/skin/board/basic/list.skin.php @@ -16,7 +16,7 @@ if ($is_nogood) $colspan++;
    - +
    - +
    @@ -35,11 +35,11 @@ if ($is_nogood) $colspan++; - +
    @@ -55,7 +55,7 @@ if ($is_nogood) $colspan++; 번호 - + @@ -65,8 +65,8 @@ if ($is_nogood) $colspan++; 글쓴이 날짜 조회 - 추천 - 비추천 + 추천 + 비추천 @@ -84,23 +84,23 @@ if ($is_nogood) $colspan++; echo $list[$i]['num']; ?> - + - + - + - 댓글 + 댓글 - - + + - 게시물이 없습니다.'; } ?> + 게시물이 없습니다.'; } ?>
    - +
    - + - + @@ -179,7 +179,7 @@ if ($is_nogood) $colspan++; - + - + diff --git a/skin/board/basic/view.skin.php b/skin/board/basic/view.skin.php index 559b729b3..3a8859118 100644 --- a/skin/board/basic/view.skin.php +++ b/skin/board/basic/view.skin.php @@ -16,7 +16,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');

    게시물 정보

    - 작성자 + 작성자 작성일 조회 댓글 @@ -32,7 +32,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); } ?> - +

    첨부파일

      @@ -56,7 +56,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); ?>
    - +
    - +
    -

    +

    - +
    - 추천 - 비추천 + 추천 + 비추천
    - + $(function() { $("a.view_file_download").click(function() { var msg = "파일을 다운로드 하시면 포인트가 차감(점)됩니다.\n\n포인트는 게시물당 한번만 차감되며 다음에 다시 다운로드 하셔도 중복하여 차감하지 않습니다.\n\n그래도 다운로드 하시겠습니까?"; diff --git a/skin/board/basic/view_comment.skin.php b/skin/board/basic/view_comment.skin.php index 7c8ee579e..d50db1d12 100644 --- a/skin/board/basic/view_comment.skin.php +++ b/skin/board/basic/view_comment.skin.php @@ -26,11 +26,11 @@ var char_max = parseInt(); // 최대

    님의 댓글

    - 댓글의 댓글 - + 댓글의 댓글 + 아이피 - + 작성일
    @@ -61,15 +61,15 @@ var char_max = parseInt(); // 최대 ?> - + -

    등록된 댓글이 없습니다.

    +

    등록된 댓글이 없습니다.

    @@ -93,7 +93,7 @@ var char_max = parseInt(); // 최대 - + @@ -102,24 +102,24 @@ var char_max = parseInt(); // 최대 - + - + - + @@ -144,6 +144,6 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - diff --git a/adm/shop_admin/bannerformupdate.php b/adm/shop_admin/bannerformupdate.php index 022fd2b7b..6a8f245f8 100644 --- a/adm/shop_admin/bannerformupdate.php +++ b/adm/shop_admin/bannerformupdate.php @@ -1,4 +1,4 @@ -

    배너관리

    -

    등록된 배너

    +

    등록된 배너

    배너추가 @@ -45,7 +45,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
    - - - - - - - + + + + + + - + - '; @@ -101,8 +101,8 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 -

    +

    - diff --git a/adm/shop_admin/categoryform.php b/adm/shop_admin/categoryform.php index 18737f7a6..7c0f7afda 100644 --- a/adm/shop_admin/categoryform.php +++ b/adm/shop_admin/categoryform.php @@ -1,4 +1,4 @@ -'; - - - - - - + + + + + +

    필수입력

    - +
    자동등록방지
    내용 - 글자 + 글자 - + onkeyup="check_byte('wr_content', 'char_count');"> + - + diff --git a/skin/board/basic/write.skin.php b/skin/board/basic/write.skin.php index b61145c03..52cca5147 100644 --- a/skin/board/basic/write.skin.php +++ b/skin/board/basic/write.skin.php @@ -52,42 +52,42 @@ echo $option_hidden; - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -109,24 +109,24 @@ echo $option_hidden; - + - + - + @@ -138,7 +138,7 @@ echo $option_hidden; - +
    class="frm_input " maxlength="20">
    옵션
    @@ -97,11 +97,11 @@ echo $option_hidden;
    " id="wr_link" class="frm_input" size="50">
    파일 # - + - + - +
    diff --git a/skin/board/gallery/list.skin.php b/skin/board/gallery/list.skin.php index c08cfd6d6..eea67e427 100644 --- a/skin/board/gallery/list.skin.php +++ b/skin/board/gallery/list.skin.php @@ -10,7 +10,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');
    - +
    - +
    @@ -29,11 +29,11 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); - +
    @@ -56,11 +56,11 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); $k += 1; if ($k % $bo_gallery_cols == 0) $style .= "margin:0 !important;"; ?> -
  • - +
  • + - + - + - 댓글 + 댓글 작성자
  • 작성일
  • 조회
  • -
  • 추천
  • -
  • 비추천
  • +
  • 추천
  • +
  • 비추천
  • - - 게시물이 없습니다."; } ?> + + 게시물이 없습니다."; } ?>
    - +
    - + - + @@ -176,7 +176,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); - + - + diff --git a/skin/board/gallery/view.skin.php b/skin/board/gallery/view.skin.php index 0f26a9b52..a889e4a88 100644 --- a/skin/board/gallery/view.skin.php +++ b/skin/board/gallery/view.skin.php @@ -16,7 +16,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');

    게시물 정보

    - 작성자 + 작성자 작성일 조회 댓글 @@ -32,7 +32,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); } ?> - +

    첨부파일

      @@ -56,7 +56,7 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php'); ?>
    - +
    - +
    -

    +

    - +
    - 추천 - 비추천 + 추천 + 비추천
    - + $(function() { $("a.view_file_download").click(function() { var msg = "파일을 다운로드 하시면 포인트가 차감(점)됩니다.\n\n포인트는 게시물당 한번만 차감되며 다음에 다시 다운로드 하셔도 중복하여 차감하지 않습니다.\n\n그래도 다운로드 하시겠습니까?"; diff --git a/skin/board/gallery/view_comment.skin.php b/skin/board/gallery/view_comment.skin.php index d9d2ef876..604c8b948 100644 --- a/skin/board/gallery/view_comment.skin.php +++ b/skin/board/gallery/view_comment.skin.php @@ -26,11 +26,11 @@ var char_max = parseInt(); // 최대

    님의 댓글

    - 댓글의 댓글 - + 댓글의 댓글 + 아이피 - + 작성일
    @@ -61,15 +61,15 @@ var char_max = parseInt(); // 최대 ?> -

    등록된 댓글이 없습니다.

    +

    등록된 댓글이 없습니다.

    @@ -94,7 +94,7 @@ var char_max = parseInt(); // 최대 - + @@ -103,24 +103,24 @@ var char_max = parseInt(); // 최대 - + - + - + @@ -288,4 +288,4 @@ var char_max = parseInt(); // 최대 comment_box('', 'c'); // 댓글 입력폼이 보이도록 처리하기위해서 추가 (root님) - + diff --git a/skin/board/gallery/write.skin.php b/skin/board/gallery/write.skin.php index 6d488a6cb..a5c6ec465 100644 --- a/skin/board/gallery/write.skin.php +++ b/skin/board/gallery/write.skin.php @@ -52,42 +52,42 @@ echo $option_hidden;
    자동등록방지
    내용 - 글자 + 글자 - + onkeyup="check_byte('wr_content', 'char_count');"> +
    - + - + - + - + - + - + - + - + - + - + - + - + @@ -109,24 +109,24 @@ echo $option_hidden; - + - + - + @@ -138,7 +138,7 @@ echo $option_hidden; - +
    class="frm_input " maxlength="20">
    옵션
    @@ -97,7 +97,7 @@ echo $option_hidden;
    " id="wr_link" class="frm_input" size="50">
    파일 # - + - + - +
    @@ -232,7 +232,7 @@ function fwrite_submit(f) return false; } - + return true; } From d43f4f53d5f8095cb0bd7bb38a54627ab8c2ae9d Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 30 Apr 2013 16:39:13 +0900 Subject: [PATCH 15/17] =?UTF-8?q?enum('Y','N')=20=EC=9D=84=20enum('N','Y')?= =?UTF-8?q?=20=EC=99=80=20=EA=B0=99=EC=9D=B4=20=EB=B3=80=EA=B2=BD=ED=95=A9?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/member_form.php | 6 ++++-- install/gnuboard4s.sql | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/adm/member_form.php b/adm/member_form.php index 0474d95dc..2ea7dad6b 100644 --- a/adm/member_form.php +++ b/adm/member_form.php @@ -83,10 +83,12 @@ if ($mb['mb_open']) { if(!isset($mb['mb_adult'])) { sql_query(" ALTER TABLE `{$g4['member_table']}` - ADD `mb_adult` ENUM('Y', 'N') NOT NULL DEFAULT 'N' AFTER `mb_birth`, - ADD `mb_hp_certify` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `mb_lost_certify` ", FALSE); + ADD `mb_adult` ENUM('N', 'Y') NOT NULL DEFAULT 'N' AFTER `mb_birth`, + ADD `mb_hp_certify` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `mb_lost_certify` ", false); } +sql_query(" ALTER TABLE `{$g4['member_table']}` CHANGE `mb_adult` `mb_adult` ENUM('N','Y') NOT NULL DEFAULT 'N' ", false); + if ($mb['mb_intercept_date']) $g4['title'] = "차단된 "; else $g4['title'] .= ""; $g4['title'] .= '회원 '.$html_title; diff --git a/install/gnuboard4s.sql b/install/gnuboard4s.sql index 3b24e1ebc..e0566f117 100644 --- a/install/gnuboard4s.sql +++ b/install/gnuboard4s.sql @@ -411,7 +411,7 @@ CREATE TABLE IF NOT EXISTS `g4s_member` ( `mb_jumin` varchar(255) NOT NULL default '', `mb_sex` char(1) NOT NULL default '', `mb_birth` varchar(255) NOT NULL default '', - `mb_adult` enum('Y','N') NOT NULL default 'N', + `mb_adult` enum('N','Y') NOT NULL default 'N', `mb_tel` varchar(255) NOT NULL default '', `mb_hp` varchar(255) NOT NULL default '', `mb_zip1` char(3) NOT NULL default '', From 5532ddf1539e36aaaedd98b0d5a9b8ba2ccab039 Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 30 Apr 2013 18:15:56 +0900 Subject: [PATCH 16/17] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90=EB=AA=A8?= =?UTF-8?q?=EB=B0=94=EC=9D=BC:=20=EC=B5=9C=EC=8B=A0=EA=B8=80=20=EC=8A=A4?= =?UTF-8?q?=ED=82=A8=20lt=20=EB=A5=BC=20lat=20=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95,=20=EC=95=BD=EC=96=B4=20=EC=A0=95=EB=A6=AC=EC=97=90?= =?UTF-8?q?=20=EB=94=B0=EB=A5=B8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/skin/latest/basic/latest.skin.php | 6 +++--- mobile/skin/latest/basic/style.css | 12 ++++++------ skin/latest/basic/latest.skin.php | 6 +++--- skin/latest/basic/style.css | 12 ++++++------ 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/mobile/skin/latest/basic/latest.skin.php b/mobile/skin/latest/basic/latest.skin.php index ef2940f42..92d62c581 100644 --- a/mobile/skin/latest/basic/latest.skin.php +++ b/mobile/skin/latest/basic/latest.skin.php @@ -4,8 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 -
    - +
    +
    • @@ -37,5 +37,5 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
    • 게시물이 없습니다.
    - +
    diff --git a/mobile/skin/latest/basic/style.css b/mobile/skin/latest/basic/style.css index 3d54a5288..76fc5a6df 100644 --- a/mobile/skin/latest/basic/style.css +++ b/mobile/skin/latest/basic/style.css @@ -1,7 +1,7 @@ /* 최근게시물 스킨 (latest) */ -.lt {position:relative;margin:0 0 1em;padding:0 1em 1.5em;border-bottom:1px solid #ddd} -.lt ul {margin:0 0 1em;padding:0;list-style:none} -.lt li {padding:0.2em 0} -.lt a {color:#000;text-decoration:none} -.lt_title {display:block;padding:1em 0} -.lt_more {position:absolute;top:1em;right:1em} \ No newline at end of file +.lat {position:relative;margin:0 0 1em;padding:0 1em 1.5em;border-bottom:1px solid #ddd} +.lat ul {margin:0 0 1em;padding:0;list-style:none} +.lat li {padding:0.2em 0} +.lat a {color:#000;text-decoration:none} +.lat_title {display:block;padding:1em 0} +.lat_more {position:absolute;top:1em;right:1em} \ No newline at end of file diff --git a/skin/latest/basic/latest.skin.php b/skin/latest/basic/latest.skin.php index df33929b4..068a84503 100644 --- a/skin/latest/basic/latest.skin.php +++ b/skin/latest/basic/latest.skin.php @@ -4,8 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 -
    - +
    +
    • @@ -37,5 +37,5 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
    • 게시물이 없습니다.
    - +
    diff --git a/skin/latest/basic/style.css b/skin/latest/basic/style.css index 82f0b96d2..b51b1f1fd 100644 --- a/skin/latest/basic/style.css +++ b/skin/latest/basic/style.css @@ -1,7 +1,7 @@ /* 새글 스킨 (latest) */ -.lt_pc {float:left;margin-left:20px} -.lt {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd} -.lt ul {margin:0 0 10px;padding:0;list-style:none} -.lt li {padding:3px 0} -.lt_title {display:block;padding:10px 0 8px} -.lt_more {position:absolute;top:10px;right:0} \ No newline at end of file +.lat_pc {float:left;margin-left:20px} +.lat {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd} +.lat ul {margin:0 0 10px;padding:0;list-style:none} +.lat li {padding:3px 0} +.lat_title {display:block;padding:10px 0 8px} +.lat_more {position:absolute;top:10px;right:0} \ No newline at end of file From b145b3970e34de6655477c376ac2d8bfd71321b5 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 30 Apr 2013 18:22:34 +0900 Subject: [PATCH 17/17] =?UTF-8?q?php=20strict=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/_common.php | 2 +- adm/shop_admin/bannerform.php | 52 +-- adm/shop_admin/bannerformupdate.php | 2 +- adm/shop_admin/bannerlist.php | 30 +- adm/shop_admin/categoryform.php | 156 ++++----- adm/shop_admin/categoryformupdate.php | 2 +- adm/shop_admin/categorylist.php | 74 ++--- adm/shop_admin/categorylistupdate.php | 2 +- adm/shop_admin/codedupcheck.php | 2 +- adm/shop_admin/configform.php | 386 +++++++++++----------- adm/shop_admin/configformupdate.php | 2 +- adm/shop_admin/contentform.php | 30 +- adm/shop_admin/contentformupdate.php | 2 +- adm/shop_admin/contentlist.php | 24 +- adm/shop_admin/deliverycodeform.php | 20 +- adm/shop_admin/deliverycodeformupdate.php | 2 +- adm/shop_admin/deliverycodelist.php | 24 +- adm/shop_admin/deliverylist.php | 86 ++--- adm/shop_admin/deliverylistupdate.php | 2 +- adm/shop_admin/faqform.php | 28 +- adm/shop_admin/faqformupdate.php | 2 +- adm/shop_admin/faqlist.php | 24 +- adm/shop_admin/faqmasterform.php | 30 +- adm/shop_admin/faqmasterformupdate.php | 2 +- adm/shop_admin/faqmasterlist.php | 28 +- adm/shop_admin/index.php | 60 ++-- adm/shop_admin/item_copy.php | 8 +- adm/shop_admin/item_copy_update.php | 2 +- adm/shop_admin/itemevent.php | 24 +- adm/shop_admin/itemeventform.php | 62 ++-- adm/shop_admin/itemeventlist.php | 72 ++-- adm/shop_admin/itemeventlistupdate.php | 2 +- adm/shop_admin/itemeventwin.php | 20 +- adm/shop_admin/itemeventwindel.php | 2 +- adm/shop_admin/itemform.php | 322 +++++++++--------- adm/shop_admin/itemformrelation.php | 2 +- adm/shop_admin/itemformupdate.php | 6 +- adm/shop_admin/iteminfo.php | 34 +- adm/shop_admin/iteminfoupdate.php | 6 +- adm/shop_admin/itemlist.php | 112 +++---- adm/shop_admin/itemlistupdate.php | 2 +- adm/shop_admin/itempsform.php | 36 +- adm/shop_admin/itempsformupdate.php | 2 +- adm/shop_admin/itempslist.php | 56 ++-- adm/shop_admin/itemqaform.php | 26 +- adm/shop_admin/itemqaformupdate.php | 2 +- adm/shop_admin/itemqalist.php | 50 +-- adm/shop_admin/itemsellrank.php | 72 ++-- adm/shop_admin/itemstocklist.php | 72 ++-- adm/shop_admin/itemstocklistupdate.php | 2 +- adm/shop_admin/itemtypelist.php | 78 ++--- adm/shop_admin/itemtypelistupdate.php | 2 +- adm/shop_admin/newwinform.php | 38 +-- adm/shop_admin/newwinformupdate.php | 2 +- adm/shop_admin/newwinlist.php | 32 +- adm/shop_admin/ordercardhistory.php | 50 +-- adm/shop_admin/ordercartupdate.php | 2 +- adm/shop_admin/orderdelete.php | 2 +- adm/shop_admin/orderform.php | 366 ++++++++++---------- adm/shop_admin/orderformupdate.php | 2 +- adm/shop_admin/orderlist.php | 116 +++---- adm/shop_admin/orderlist2.php | 2 +- 62 files changed, 1380 insertions(+), 1380 deletions(-) diff --git a/adm/shop_admin/_common.php b/adm/shop_admin/_common.php index 631a17a9a..1fe1ddac1 100644 --- a/adm/shop_admin/_common.php +++ b/adm/shop_admin/_common.php @@ -1,4 +1,4 @@ -
    - - + +

    배너 입력 수정

    @@ -40,7 +40,7 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
    이미지 - - - + +
    - - + +
    - +
    - +
    - +
    - - - " id="bn_begin_chk" onclick="if (this.checked == true) this.form.bn_begin_time.value=this.form.bn_begin_chk.value; else this.form.bn_begin_time.value = this.form.bn_begin_time.defaultValue;"> + + + " id="bn_begin_chk" onclick="if (this.checked == true) this.form.bn_begin_time.value=this.form.bn_begin_chk.value; else this.form.bn_begin_time.value = this.form.bn_begin_time.defaultValue;">
    - - - " id="bn_end_chk" onclick="if (this.checked == true) this.form.bn_end_time.value=this.form.bn_end_chk.value; else this.form.bn_end_time.value = this.form.bn_end_time.defaultValue;"> + + + " id="bn_end_chk" onclick="if (this.checked == true) this.form.bn_end_time.value=this.form.bn_end_chk.value; else this.form.bn_end_time.value = this.form.bn_end_time.defaultValue;">
    - - + +
    - 배너수정 - 배너삭제 + 배너수정 + 배너삭제
    자료가 없습니다.
    @@ -105,132 +105,132 @@ $pg_anchor .= ''; - + - + @@ -239,7 +239,7 @@ $pg_anchor .= '';

    선택 입력

    - +
    - - - - 코드 중복검사 - - - - 미리보기 - 하위분류 추가 - 상품리스트 - + + + + 코드 중복검사 + + + + 미리보기 + 하위분류 추가 + 상품리스트 +
    - - - - - - + + + + + +
    - +
    - - 픽셀 + + 픽셀
    - - 픽셀 + + 픽셀
    - - 개 + +
    - - ' id="ca_list_row" required class="required frm_input" size="3"> 줄 + + ' id="ca_list_row" required class="required frm_input" size="3"> 줄
    - - + +
    - - + +
    - - + +
    - - + +
    - - + +
    - - + +
    - - 개 + +
    - - + +
    - - value="1" id="ca_use">예 + + value="1" id="ca_use">예
    @@ -249,23 +249,23 @@ $pg_anchor .= ''; - "; } ?> + "; } ?> - "; } ?> + "; } ?> @@ -318,10 +318,10 @@ $pg_anchor .= ''; - +

    기타설정

    - +
    - 상단 내용과 달리 PHP 코드를 사용할 수 있습니다.");?> - + 상단 내용과 달리 PHP 코드를 사용할 수 있습니다."); ?> +
    - 하단 내용과 달리 PHP 코드를 사용할 수 있습니다.");?> - + 하단 내용과 달리 PHP 코드를 사용할 수 있습니다."); ?> +
    상단이미지 - + - '; ?>
    $himg_str
    $himg_str
    하단이미지 - + - '; ?>
    $timg_str
    $timg_str
    상단내용 - - + +
    하단내용 - - + +
    @@ -331,7 +331,7 @@ $pg_anchor .= ''; @@ -339,19 +339,19 @@ $pg_anchor .= '';
    하위분류 - 이 작업은 실행 후 복구할 수 없습니다.")?> + 이 작업은 실행 후 복구할 수 없습니다."); ?>
    - + - \ No newline at end of file diff --git a/adm/shop_admin/categoryformupdate.php b/adm/shop_admin/categoryformupdate.php index 39a8f2b7c..79cd38e23 100644 --- a/adm/shop_admin/categoryformupdate.php +++ b/adm/shop_admin/categoryformupdate.php @@ -1,4 +1,4 @@ -
    - - + +
    분류 검색 - - 생성된 분류 수 개 + + 생성된 분류 수 - +
    @@ -85,31 +85,31 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌

    생성된 분류 전체 목록

    생성된 분류 확인, 추가 및 간략 수정을 할 수 있습니다.

    - + - + - - - + + + - - - - - + + + + + - - + - - - - + + + + - \n"; ?> @@ -176,10 +176,10 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/categorylistupdate.php b/adm/shop_admin/categorylistupdate.php index e113822bb..83236b581 100644 --- a/adm/shop_admin/categorylistupdate.php +++ b/adm/shop_admin/categorylistupdate.php @@ -1,4 +1,4 @@ -

    사업자정보

    - -

    + +

    분류
    코드
    분류명회원아이디판매
    가능
    기본재고분류
    코드
    분류명회원아이디판매
    가능
    기본재고 상품수 관리
    - - + + - - - - - - - + + + + + + + > >
    자료가 한 건도 없습니다.
    @@ -95,57 +95,57 @@ $pg_anchor = '
    @@ -155,8 +155,8 @@ $pg_anchor = '

      쇼핑몰 초기화면

      - -

      + +

    - + - +
    - +
    - + - +
    - + - +
    - + - +
    - + - +
    @@ -166,96 +166,96 @@ $pg_anchor = '
    @@ -265,7 +265,7 @@ $pg_anchor = '

      결제정보

      - +
    히트상품출력 - > + > - + - + - + - +
    추천상품출력 - > + > - + - + - + - +
    최신상품출력 - > + > - + - + - + - +
    인기상품출력 - > + > - + - + - + - +
    할인상품출력 - > + > - + - + - + - +
    @@ -275,149 +275,149 @@ $pg_anchor = '
    @@ -539,7 +539,7 @@ $pg_anchor = '

      배송정보

      - +
    - +
    - +
    - +
    - +
    - +
    - +
    - - 원 + +
    - 주문내역 > 수정에서 발급이 가능합니다.\n현금영수증 발급 취소는 PG사에서 지원하는 현금영수증 취소 기능을 사용하시기 바랍니다.", 50)?> + 주문내역 > 수정에서 발급이 가능합니다.\n현금영수증 발급 취소는 PG사에서 지원하는 현금영수증 취소 기능을 사용하시기 바랍니다.", 50); ?>
    - 환경설정 > 기본환경설정과 동일한 설정입니다.")?> - > 사용 + 환경설정 > 기본환경설정과 동일한 설정입니다."); ?> + > 사용
    - - 점 + +
    - + %
    - +
    - - 주문 완료 일 이후에 포인트를 부여 + + 주문 완료 일 이후에 포인트를 부여
    - + - SR 영대문자, 숫자 혼용 3자리 + SR 영대문자, 숫자 혼용 3자리
    - - + +
    에스크로 사용 - KCP 관리자 > 고객센터 > 서비스변경 및 추가 > 에스크로 신청 메뉴에서 에스크로를 사용 선택하고, 결제수단별로 적용 신청한 후 사용하셔야 합니다.\n에스크로 사용시 배송과의 연동은 되지 않으며 에스크로 결제만 지원됩니다.")?> - id="de_escrow_use1"> + KCP 관리자 > 고객센터 > 서비스변경 및 추가 > 에스크로 신청 메뉴에서 에스크로를 사용 선택하고, 결제수단별로 적용 신청한 후 사용하셔야 합니다.\n에스크로 사용시 배송과의 연동은 되지 않으며 에스크로 결제만 지원됩니다."); ?> + id="de_escrow_use1"> - id="de_escrow_use2"> + id="de_escrow_use2">
    신용카드 결제테스트 - + - id="de_card_test1"> + id="de_card_test1"> - id="de_card_test2"> + id="de_card_test2">
    실결제 관리자 테스트 관리자 @@ -451,86 +451,86 @@ $pg_anchor = '
    공통 URL - KCP 관리자 > 상점정보관리 > 정보변경 > 공통URL 정보 > 공통URL 변경후에 넣으셔야 상점에 자동으로 입금 통보됩니다.")?> - /settle_kcp_common.php + KCP 관리자 > 상점정보관리 > 정보변경 > 공통URL 정보 > 공통URL 변경후에 넣으셔야 상점에 자동으로 입금 통보됩니다."); ?> + /settle_kcp_common.php
    - - + + - +
    - + - +
    - + - +
    - +
    - + - 3자리 + 3자리
    - + - +
    - + - +
    - +
    @@ -549,50 +549,50 @@ $pg_anchor = '
    - + - +
    - 상한으로 설정한 경우, 주문총액이 배송비상한가 미만일 경우 배송비를 받습니다.\n없음으로 설정한 경우, 배송비상한가 및 배송비를 무시하며 착불의 경우도 없음으로 설정됩니다.", 50);?> + 상한으로 설정한 경우, 주문총액이 배송비상한가 미만일 경우 배송비를 받습니다.\n없음으로 설정한 경우, 배송비상한가 및 배송비를 무시하며 착불의 경우도 없음으로 설정됩니다.", 50); ?>
    - ; 로 구분합니다.\n\n예를 들어 20000원 미만일 경우 4000원, 30000원 미만일 경우 3000원 으로 사용할 경우에는 배송비상한가를 20000;30000 으로 입력하고 배송비를 4000;3000 으로 입력합니다.", 50);?> - 원 + ; 로 구분합니다.\n\n예를 들어 20000원 미만일 경우 4000원, 30000원 미만일 경우 3000원 으로 사용할 경우에는 배송비상한가를 20000;30000 으로 입력하고 배송비를 4000;3000 으로 입력합니다.", 50); ?> +
    - 원 +
    - +
    - - 일 + +
    배송정보
    교환/반품
    @@ -600,7 +600,7 @@ $pg_anchor = '

      기타정보

      - + @@ -610,43 +610,43 @@ $pg_anchor = '
      - + - + - + - + - + - +
      관련상품출력 - + - + - + - +
      이미지(소) - + - 픽셀 + 픽셀 / - 픽셀 + 픽셀
      이미지(중) - + - 픽셀 + 픽셀 / - 픽셀 + 픽셀
      로고이미지 - + - - +
      메인이미지 - + - - +
      - +
      - +
      - - + +
      - - > 사용 + + > 사용
      - - > + + > 안내메세지 출력 사용
      비회원에 대한
      개인정보수집 내용
      MYSQL USER
      MYSQL DB
      서버 IP
      - - + +
      - + - + - + @@ -986,9 +986,9 @@ function byte_check(el_cont, el_byte) - diff --git a/adm/shop_admin/configformupdate.php b/adm/shop_admin/configformupdate.php index ec4714ffd..d81ac0708 100644 --- a/adm/shop_admin/configformupdate.php +++ b/adm/shop_admin/configformupdate.php @@ -1,4 +1,4 @@ - - +
      @@ -48,38 +48,38 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - - class="required frm_input" size="20" maxlength="20"> - 내용확인 + + class="required frm_input" size="20" maxlength="20"> + 내용확인 - + 내용 - + - - + + - - + + - - + check_field(f.co_id, "ID를 입력하세요."); check_field(f.co_subject, "제목을 입력하세요."); @@ -155,6 +155,6 @@ function frmcontentform_check(f) } - diff --git a/adm/shop_admin/contentformupdate.php b/adm/shop_admin/contentformupdate.php index 6b1a54d46..12429cf87 100644 --- a/adm/shop_admin/contentformupdate.php +++ b/adm/shop_admin/contentformupdate.php @@ -1,4 +1,4 @@ -

      내용관리

      - 1) {?>처음으로 - 전체 내용 + 1) {?>처음으로 + 전체 내용

      내용 추가 @@ -41,17 +41,17 @@ $result = sql_query($sql); - + - - + + - <?=htmlspecialchars2($row['co_subject'])?> 보기 - <?=htmlspecialchars2($row['co_subject'])?> 수정 - <?=htmlspecialchars2($row['co_subject'])?> 삭제 + <?php echo htmlspecialchars2($row['co_subject']); ?> 보기 + <?php echo htmlspecialchars2($row['co_subject']); ?> 수정 + <?php echo htmlspecialchars2($row['co_subject']); ?> 삭제 - 자료가 한건도 없습니다.'; @@ -61,8 +61,8 @@ $result = sql_query($sql);
      - + - diff --git a/adm/shop_admin/deliverycodeform.php b/adm/shop_admin/deliverycodeform.php index 881da7561..a9e10092e 100644 --- a/adm/shop_admin/deliverycodeform.php +++ b/adm/shop_admin/deliverycodeform.php @@ -1,4 +1,4 @@ - - - + +
      -

      +

      @@ -39,26 +39,26 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); @@ -72,6 +72,6 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - diff --git a/adm/shop_admin/deliverycodeformupdate.php b/adm/shop_admin/deliverycodeformupdate.php index d02473e4e..50e4dc749 100644 --- a/adm/shop_admin/deliverycodeformupdate.php +++ b/adm/shop_admin/deliverycodeformupdate.php @@ -1,4 +1,4 @@ -

      배송업체 목록

      -

      등록된 배송업체

      +

      등록된 배송업체

      배송회사추가 @@ -38,19 +38,19 @@ $result = sql_query($sql);
      - + - - - - + + + + - '; @@ -60,6 +60,6 @@ $result = sql_query($sql); - diff --git a/adm/shop_admin/deliverylist.php b/adm/shop_admin/deliverylist.php index 27a58467e..8f6440d1d 100644 --- a/adm/shop_admin/deliverylist.php +++ b/adm/shop_admin/deliverylist.php @@ -1,4 +1,4 @@ - - - + +
      배송조건 검색 - - 전체 주문내역 건 + + 전체 주문내역 - /> + /> - +
      @@ -110,29 +110,29 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 - - - - - - + + + + + +
      - +
      - +
      - +
      - - + +
      - <?=stripslashes($row['dl_company'])?> 홈페이지 - <?=stripslashes($row['dl_company'])?> 수정 - <?=stripslashes($row['dl_company'])?> 삭제 + <?php echo stripslashes($row['dl_company']); ?> 홈페이지 + <?php echo stripslashes($row['dl_company']); ?> 수정 + <?php echo stripslashes($row['dl_company']); ?> 삭제
      자료가 없습니다.
      - - - - - - - + + + + + + + - + - - - - - - - + + + + + + - document.fdeliverylistupate.elements('dl_id[$i]').value = '$row[dl_id]'; "; // FF 3.0 에서 위의 코드는 에러를 발생함 (080626 수정) @@ -210,8 +210,8 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/deliverylistupdate.php b/adm/shop_admin/deliverylistupdate.php index 8601482d0..9754532f9 100644 --- a/adm/shop_admin/deliverylistupdate.php +++ b/adm/shop_admin/deliverylistupdate.php @@ -1,4 +1,4 @@ - - - - + + +
      -

      +

      ">주문번호 순 정렬">주문자 순 정렬">주문액 순 정렬">입금액 순 정렬">미수금 순 정렬">희망배송일 순 정렬">배송일시 순 정렬">주문번호 순 정렬">주문자 순 정렬">주문액 순 정렬">입금액 순 정렬">미수금 순 정렬">희망배송일 순 정렬">배송일시 순 정렬 배송업체">운송장번호 순 정렬">운송장번호 순 정렬
      - - - + + + - - + - - - + + +
      @@ -45,25 +45,25 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - + - +
      - - - 내용보기 + + + 내용보기
      질문
      답변
      @@ -85,8 +85,8 @@ function frmfaqform_check(f) return false; } - - + + return true; } @@ -94,6 +94,6 @@ function frmfaqform_check(f) // document.getElementById('fa_order').focus(); 포커스 해제 - diff --git a/adm/shop_admin/faqformupdate.php b/adm/shop_admin/faqformupdate.php index 0ab323dcf..4e3c08a68 100644 --- a/adm/shop_admin/faqformupdate.php +++ b/adm/shop_admin/faqformupdate.php @@ -1,4 +1,4 @@ -
      -

      목록

      +

      목록

      -

      등록된 FAQ 상세내용

      +

      등록된 FAQ 상세내용

      1. FAQ는 무제한으로 등록할 수 있습니다
      2. @@ -33,7 +33,7 @@ $result = sql_query($sql);
      @@ -46,7 +46,7 @@ $result = sql_query($sql); - - - - + + + - - diff --git a/adm/shop_admin/faqmasterform.php b/adm/shop_admin/faqmasterform.php index 7d007da5e..1ea02de3d 100644 --- a/adm/shop_admin/faqmasterform.php +++ b/adm/shop_admin/faqmasterform.php @@ -1,4 +1,4 @@ - - - + +

      FAQ입력

      @@ -40,18 +40,18 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
      @@ -121,13 +121,13 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - diff --git a/adm/shop_admin/faqmasterformupdate.php b/adm/shop_admin/faqmasterformupdate.php index cbaedb87e..b0412cbce 100644 --- a/adm/shop_admin/faqmasterformupdate.php +++ b/adm/shop_admin/faqmasterformupdate.php @@ -1,4 +1,4 @@ -FAQ관리

      - 1) {?>처음으로 - 전체 FAQ + 1) {?>처음으로 + 전체 FAQ

        @@ -52,23 +52,23 @@ $result = sql_query($sql);
      - - - - - + + + + - - + - diff --git a/adm/shop_admin/index.php b/adm/shop_admin/index.php index 7433f6205..60680772a 100644 --- a/adm/shop_admin/index.php +++ b/adm/shop_admin/index.php @@ -1,4 +1,4 @@ -

      입금완료 미배송내역

      - +
      - <?=stripslashes($row['fa_subject'])?> 수정 - <?=stripslashes($row['fa_subject'])?> 삭제 + <?php echo stripslashes($row['fa_subject']); ?> 수정 + <?php echo stripslashes($row['fa_subject']); ?> 삭제
      - - - 보기 - 상세보기 - + + + 보기 + 상세보기 +
      - - 상단 내용 - +
      하단 내용 - +
      상세보기상세보기 - <?=stripslashes($row['fm_subject']) ?> 보기 - <?=stripslashes($row['fm_subject']) ?> 수정 - <?=stripslashes($row['fm_subject']) ?> 삭제 + <?php echo stripslashes($row['fm_subject']); ?> 보기 + <?php echo stripslashes($row['fm_subject']); ?> 수정 + <?php echo stripslashes($row['fm_subject']); ?> 삭제
      @@ -30,7 +30,7 @@ $pg_anchor = '
      - } ?> - - - - - + + + + + - '; ?> @@ -83,7 +83,7 @@ $pg_anchor = '

        미입금 주문내역

        - +
      <?=$row['od_id']?> 수정<?php echo $row['od_id']; ?> 수정
      자료가 없습니다.
      @@ -96,7 +96,7 @@ $pg_anchor = '
      - } ?> - - - - - + + + + + - '; ?> @@ -148,7 +148,7 @@ $pg_anchor = '

        사용후기

        - +
      <?=$row['od_id']?> 수정<?php echo $row['od_id']; ?> 수정
      자료가 없습니다.
      @@ -159,7 +159,7 @@ $pg_anchor = '
      - $name = get_sideview($row['mb_id'], get_text($row['is_name']), $row1['mb_email'], $row1['mb_homepage']); ?> - - - + + + - '; ?> @@ -191,7 +191,7 @@ $pg_anchor = '

        상품문의

        - +
      <?=cut_str($row['is_subject'],40)?> 수정<?php cut_str($row['is_subject'],40); ?> 수정
      자료가 없습니다.
      @@ -202,7 +202,7 @@ $pg_anchor = '
      - $name = get_sideview($row['mb_id'], get_text($row['iq_name']), $row1['mb_email'], $row1['mb_homepage']); ?> - - - + + + - - diff --git a/adm/shop_admin/item_copy.php b/adm/shop_admin/item_copy.php index ddeb8fb0e..9e22b4467 100644 --- a/adm/shop_admin/item_copy.php +++ b/adm/shop_admin/item_copy.php @@ -1,4 +1,4 @@ - - +
      수정수정
      - +
      @@ -37,6 +37,6 @@ function _copy(link) } - \ No newline at end of file diff --git a/adm/shop_admin/item_copy_update.php b/adm/shop_admin/item_copy_update.php index cd78bb716..05cfabc14 100644 --- a/adm/shop_admin/item_copy_update.php +++ b/adm/shop_admin/item_copy_update.php @@ -1,4 +1,4 @@ - -

      전체 이벤트

      +

      전체 이벤트

      이벤트 목록

      @@ -38,7 +38,7 @@ $result = sql_query($sql); - - - - - 예' : '아니오'?> + + + + 예' : '아니오'; ?> - <?=$row['ev_subject']?> 보기 - <?=$row['ev_subject']?> 수정 - <?=$row['ev_subject']?> 삭제 + <?php echo $row['ev_subject']; ?> 보기 + <?php echo $row['ev_subject']; ?> 수정 + <?php echo $row['ev_subject']; ?> 삭제 - - diff --git a/adm/shop_admin/itemeventform.php b/adm/shop_admin/itemeventform.php index 2e5622712..580a9ea2f 100644 --- a/adm/shop_admin/itemeventform.php +++ b/adm/shop_admin/itemeventform.php @@ -1,4 +1,4 @@ - - - + +
      -

      +

      - + - + @@ -117,9 +117,9 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); @@ -216,8 +216,8 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - diff --git a/adm/shop_admin/itemeventlist.php b/adm/shop_admin/itemeventlist.php index 8ed3ea628..78aa0f67e 100644 --- a/adm/shop_admin/itemeventlist.php +++ b/adm/shop_admin/itemeventlist.php @@ -1,4 +1,4 @@ -이벤트 선택 - - 전체 이벤트 건 + + 전체 이벤트 건 - - + + - + - + - + @@ -132,28 +132,28 @@ if (isset($ev_set)) {

      상품 목록

      -

      상품을 이벤트별로 일괄 처리합니다. 현재 선택된 이벤트는 입니다.

      +

      상품을 이벤트별로 일괄 처리합니다. 현재 선택된 이벤트는 입니다.

      - - - - - - - - + + + + + + + +
      이벤트번호 - - 이벤트바로가기 + + 이벤트바로가기
      - +
      - 픽셀 + 픽셀
      - 픽셀 + 픽셀
      - - 개 + +
      - - 줄 + +
      - +
      - + >
      - + - - + - - + - 상단내용 - +
      하단내용 - +
      - - + + -

      - - 현재 선택된 이벤트는 입니다.
      + + 현재 선택된 이벤트는 입니다.
      선택된 이벤트의 상품 수정 내용을 반영하시려면 일괄수정 버튼을 누르십시오. - + 이벤트를 선택하지 않으셨습니다. 수정 내용을 반영하기 전에 이벤트를 선택해주십시오.
      이벤트 선택 - +

      @@ -197,7 +197,7 @@ if (isset($ev_set)) { - + - \ No newline at end of file diff --git a/adm/shop_admin/itemeventlistupdate.php b/adm/shop_admin/itemeventlistupdate.php index 05dd14d3c..493a5543c 100644 --- a/adm/shop_admin/itemeventlistupdate.php +++ b/adm/shop_admin/itemeventlistupdate.php @@ -1,4 +1,4 @@ -
      -

      +

      이벤트사용 - - > + + > -
      @@ -22,7 +22,7 @@ include_once(G4_PATH.'/head.sub.php'); - - - + + - '; @@ -56,6 +56,6 @@ include_once(G4_PATH.'/head.sub.php'); - diff --git a/adm/shop_admin/itemeventwindel.php b/adm/shop_admin/itemeventwindel.php index 99edfde96..1f33a0607 100644 --- a/adm/shop_admin/itemeventwindel.php +++ b/adm/shop_admin/itemeventwindel.php @@ -1,4 +1,4 @@ - - - - - - - - - - + + + + + + + + +

      상품분류

      - +

      기본분류는 반드시 선택하셔야 합니다. 하나의 상품에 최대 3개의 다른 분류를 지정할 수 있습니다.

      - - - + + + <?=$ev['ev_subject']?> 이벤트에서 삭제 : <?=cut_str(stripslashes($row['it_name']), 60, "><?php echo $ev['ev_subject']; ?> 이벤트에서 삭제 : <?php echo cut_str(stripslashes($row['it_name']), 60, ">
      자료가 없습니다.
      @@ -161,14 +161,14 @@ $pg_anchor ='
      - + - + - + - - + +
      - +
      - - - +

      기본정보

      - + @@ -214,72 +214,72 @@ $pg_anchor ='
      - ?> - + - - + - + - + @@ -410,7 +410,7 @@ $pg_anchor ='

        이미지

        - +

        이미지 자동생성 기능을 이용하시면, 이미지(대) 1장만 업로드 해서 자동으로 이미지(중), 이미지(소) 를 생성할 수 있습니다.

      상품코드 - + - - 직접 상품코드를 입력할 수도 있습니다.\n상품코드는 영문자와 숫자만 입력 가능합니다.");?> - - - - - - 상품확인 - 사용후기 - 상품문의 - + + 직접 상품코드를 입력할 수도 있습니다.\n상품코드는 영문자와 숫자만 입력 가능합니다."); ?> + + + + + + 상품확인 + 사용후기 + 상품문의 +
      - " id="it_name" required class="frm_input required" size="95"> + " id="it_name" required class="frm_input required" size="95">
      - - > + + >
      - 입력하지 않으면 자동으로 출력됩니다.");?> - + 입력하지 않으면 자동으로 출력됩니다."); ?> +
      상품유형 - - id="it_type1"> - - id="it_type2"> - - id="it_type3"> - - id="it_type4"> - - id="it_type5"> - + + id="it_type1"> + + id="it_type2"> + + id="it_type3"> + + id="it_type4"> + + id="it_type5"> +
      - - + +
      - - + +
      -
      - +
      +
      - - + +
      -
      - +
      +
      - - + +
      - - 원 + +
      - 입력이 없다면 비회원가격으로 대신합니다.");?> - 원 + 입력이 없다면 비회원가격으로 대신합니다."); ?> +
      - 입력이 없다면 회원가격으로 대신합니다. 회원가격도 없다면 비회원가격으로 대신합니다.");?> - 원 + 입력이 없다면 회원가격으로 대신합니다. 회원가격도 없다면 비회원가격으로 대신합니다."); ?> +
      - - 원 + +
      - - 점 + +
      - 주문관리에서 상품별 상태 변경에 따라 자동으로 재고를 가감합니다. 재고는 규격/색상별이 아닌, 상품별로만 관리됩니다.");?> - 개 + 주문관리에서 상품별 상태 변경에 따라 자동으로 재고를 가감합니다. 재고는 규격/색상별이 아닌, 상품별로만 관리됩니다."); ?> +
      - - + +
      요약상품정보 - 전자상거래 등에서의 상품 등의 정보제공에 관한 고시에 따라 총 35개 상품군에 대해 상품 특성 등을 양식에 따라 입력할 수 있습니다.");?> - - + 전자상거래 등에서의 상품 등의 정보제공에 관한 고시에 따라 총 35개 상품군에 대해 상품 특성 등을 양식에 따라 입력할 수 있습니다."); ?> + +
      상품설명
      - - + +
      - - > 예 + + > 예
      - - > 예 + + > 예
      @@ -419,20 +419,20 @@ $pg_anchor ='
      - + - + - + - + - +
      - JPG 파일만 가능합니다. 이미지(대) 를 기준으로 이미지(중)과 이미지(소) 의 사이즈를 환경설정에서 정한 폭과 높이로 자동생성합니다.");?> + JPG 파일만 가능합니다. 이미지(대) 를 기준으로 이미지(중)과 이미지(소) 의 사이즈를 환경설정에서 정한 폭과 높이로 자동생성합니다.");?> 사용
      - - +
      - + - - +
      - + - - +
      - - " id="it_limg"> + - - - -
      - + - +

      관련상품

      - +

      등록된 전체상품 목록에서 상품분류를 선택하면 해당 상품 리스트가 연이어 나타납니다.
      @@ -586,7 +586,7 @@ $pg_anchor ='

        - else $it_image = ""; ?> - - //"> : + 현재 활성화 된 상품 - +

      관련이벤트

      - +

      등록된 전체이벤트 목록에서 추가하길 원하는 이벤트를 마우스 더블클릭하거나 키보드 스페이스바를 누르면, 선택된 관련이벤트 목록에 추가됩니다.
      선택된 관련이벤트 목록에서 이벤트 선택 후 마우스 더블클릭하거나 키보드 스페이스바를 누르면 선택된 관련이벤트 목록에서 제거됩니다. @@ -778,7 +778,7 @@ $pg_anchor ='

        등록된 전체이벤트 목록

        - } ?> - +
        @@ -883,7 +883,7 @@ $pg_anchor ='

          상세설명설정

          - + @@ -893,59 +893,59 @@ $pg_anchor ='
          - + - + - + - +
          상단이미지 - + - - - + +
          하단이미지 - + - - - + +
          상품상단내용
          상품하단내용
          입력일시 - - + +
          @@ -1018,9 +1018,9 @@ function fitemformcheck(f) } } - - - + + + return true; } @@ -1046,6 +1046,6 @@ function categorychange(f) categorychange(document.fitemform); - diff --git a/adm/shop_admin/itemformrelation.php b/adm/shop_admin/itemformrelation.php index ba99d0cc2..91fb490ed 100644 --- a/adm/shop_admin/itemformrelation.php +++ b/adm/shop_admin/itemformrelation.php @@ -1,4 +1,4 @@ -"; diff --git a/adm/shop_admin/iteminfo.php b/adm/shop_admin/iteminfo.php index 7fef827c3..341734e74 100644 --- a/adm/shop_admin/iteminfo.php +++ b/adm/shop_admin/iteminfo.php @@ -1,4 +1,4 @@ -
          - +
          -

          +

          모든 필드를 반드시 입력하셔야 합니다.

          @@ -35,10 +35,10 @@ include_once(G4_PATH.'/head.sub.php'); - $value) { @@ -62,22 +62,22 @@ include_once(G4_PATH.'/head.sub.php'); ?> - + - @@ -99,12 +99,12 @@ $(function(){ if (this.checked) { $.each($f, function(){ if ($(this).val() == "") { - $(this).val(""); + $(this).val(""); } }); } else { $.each($f, function(){ - if ($(this).val() == "") { + if ($(this).val() == "") { $(this).val(""); } }); @@ -119,6 +119,6 @@ function fiteminfo_submit(f) } - \ No newline at end of file diff --git a/adm/shop_admin/iteminfoupdate.php b/adm/shop_admin/iteminfoupdate.php index 9c4a6f885..736927b89 100644 --- a/adm/shop_admin/iteminfoupdate.php +++ b/adm/shop_admin/iteminfoupdate.php @@ -1,4 +1,4 @@ - - \ No newline at end of file diff --git a/adm/shop_admin/itemlist.php b/adm/shop_admin/itemlist.php index d589576ee..4c9ee9fb2 100644 --- a/adm/shop_admin/itemlist.php +++ b/adm/shop_admin/itemlist.php @@ -1,4 +1,4 @@ - - - + +
          상품 검색 - - 등록된 상품 건 + + 등록된 상품 - + - + - +
          @@ -135,34 +135,34 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌 - - - - - - + + + + + +
          - - - $value) { $opt_value = $key; $opt_text = $value['title']; @@ -48,7 +48,7 @@ include_once(G4_PATH.'/head.sub.php');
          - - - + + +
          빈 칸 일괄채우기 - - + +
          - - - - - - - - + + + + + + + + - - - + + + - - + - - - - - - + + + + + + - - - + + + - '; @@ -216,7 +216,7 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/itemlistupdate.php b/adm/shop_admin/itemlistupdate.php index 667e1338d..c6a83737a 100644 --- a/adm/shop_admin/itemlistupdate.php +++ b/adm/shop_admin/itemlistupdate.php @@ -1,4 +1,4 @@ - - - - - - - + + + + + +

          사용후기 수정

          @@ -40,33 +40,33 @@ $qstr = 'page='.$page.'&sort1='.$sort1.'&sort2='.$sort2;
          - + - + - + + value=''> - + @@ -75,20 +75,20 @@ $qstr = 'page='.$page.'&sort1='.$sort1.'&sort2='.$sort2; - diff --git a/adm/shop_admin/itempsformupdate.php b/adm/shop_admin/itempsformupdate.php index 6dc533b10..bb864706f 100644 --- a/adm/shop_admin/itempsformupdate.php +++ b/adm/shop_admin/itempsformupdate.php @@ -1,4 +1,4 @@ - - - + +
          사용후기 검색 - - 전체 문의내역 건 + + 전체 문의내역 - + - + - +
          @@ -107,16 +107,16 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
          상품코드 순 정렬분류 및 상품명 순 정렬비회원가격 순 정렬회원가격 순 정렬특별가격 순 정렬순서 순 정렬판매 순 정렬조회 순 정렬상품코드 순 정렬분류 및 상품명 순 정렬비회원가격 순 정렬회원가격 순 정렬특별가격 순 정렬순서 순 정렬판매 순 정렬조회 순 정렬 관리
          시중가격 순 정렬포인트 순 정렬재고 순 정렬시중가격 순 정렬포인트 순 정렬재고 순 정렬
          - - + + - - + -
          - " required class="frm_input frm_sit_title required" size="30"> +
          + " required class="frm_input frm_sit_title required" size="30">
          value="1"> value="1"> - <?=htmlspecialchars2(cut_str($row['it_name'],250, 보기"> - <?=htmlspecialchars2(cut_str($row['it_name'],250, 복사"> - <?=htmlspecialchars2(cut_str($row['it_name'],250, 수정"> - <?=htmlspecialchars2(cut_str($row['it_name'],250, 삭제"> + <?php echo htmlspecialchars2(cut_str($row['it_name'],250, 보기"> + <?php echo htmlspecialchars2(cut_str($row['it_name'],250, 복사"> + <?php echo htmlspecialchars2(cut_str($row['it_name'],250, 수정"> + <?php echo htmlspecialchars2(cut_str($row['it_name'],250, 삭제">
          자료가 한건도 없습니다.
          상품명
          이름
          점수
          '>
          내용
          확인 - + - + - +
          - - - - - + + + + + - - - - - - + + + + + - - + - diff --git a/adm/shop_admin/itemqaform.php b/adm/shop_admin/itemqaform.php index 059ad835a..af291ed56 100644 --- a/adm/shop_admin/itemqaform.php +++ b/adm/shop_admin/itemqaform.php @@ -1,4 +1,4 @@ - - +

          상품문의 수정/답변

          상품에 대한 문의에 답변하실 수 있습니다. 상품 문의 내용의 수정도 가능합니다.

          - - - - - + + + + +
          상품명이름제목점수확인상품명이름제목점수확인 관리
          - <?=$row['is_subject']?> 수정 - <?=$row['is_subject']?> 삭제 + <?php echo $row['is_subject']; ?> 수정 + <?php echo $row['is_subject']; ?> 삭제
          @@ -40,31 +40,31 @@ $qstr = 'page='.$page.'&sort1='.$sort1.'&sort2='.$sort2; - + - + - + - +
          이름
      - diff --git a/adm/shop_admin/itemqaformupdate.php b/adm/shop_admin/itemqaformupdate.php index cb717f4f7..4c42eafa8 100644 --- a/adm/shop_admin/itemqaformupdate.php +++ b/adm/shop_admin/itemqaformupdate.php @@ -1,4 +1,4 @@ -
      - - + +
      상품문의 검색 - - 전체 문의내역 건 + + 전체 문의내역 - + - + - +
      @@ -106,15 +106,15 @@ if ($sfl || $stx) // 검색 결과일 때만 처음 버튼을 보여줌 - - - - + + + + - - - - - + + + + - '; @@ -145,8 +145,8 @@ if ($sfl || $stx) // 검색 결과일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/itemsellrank.php b/adm/shop_admin/itemsellrank.php index 4fc55a79a..36e564244 100644 --- a/adm/shop_admin/itemsellrank.php +++ b/adm/shop_admin/itemsellrank.php @@ -1,4 +1,4 @@ - - - - - + + + +
      상품판매순위 검색 - - 등록상품 건 + + 등록상품 - + - + 기간설정 - 에서 + 에서 - 까지 + 까지
      @@ -112,19 +112,19 @@ if ($fr_date || $to_date) // 검색렬일 때만 처음 버튼을 보여줌 - - - - - - - - - + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + - - + - diff --git a/adm/shop_admin/itemstocklist.php b/adm/shop_admin/itemstocklist.php index d3a264506..8cf78e9f6 100644 --- a/adm/shop_admin/itemstocklist.php +++ b/adm/shop_admin/itemstocklist.php @@ -1,4 +1,4 @@ - - - - - + + + +
      상품재고 검색 - - 전체 상품 개 + + 전체 상품 - + - + - +
      @@ -105,28 +105,28 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌 - - - - - - + + + + + +
      상품명 순 정렬이름 순 정렬질문 순 정렬답변 순 정렬상품명 순 정렬이름 순 정렬질문 순 정렬답변 순 정렬 관리
      - <?=$row['iq_subject']?> 수정 - <?=$row['iq_subject']?> 삭제 + <?php echo $row['iq_subject']; ?> 수정 + <?php echo $row['iq_subject']; ?> 삭제
      자료가 없습니다.
      순위 상품평">쇼핑 순 정렬">주문 순 정렬">준비 순 정렬">배송 순 정렬">완료 순 정렬">취소 순 정렬">반품 순 정렬">품절 순 정렬">합계 순 정렬">쇼핑 순 정렬">주문 순 정렬">준비 순 정렬">배송 순 정렬">완료 순 정렬">취소 순 정렬">반품 순 정렬">품절 순 정렬">합계 순 정렬
      - - - + + + - + - - - - - - - - + + + + + + + - '; @@ -170,8 +170,8 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/itemstocklistupdate.php b/adm/shop_admin/itemstocklistupdate.php index 7f6d7e0b6..004209ae6 100644 --- a/adm/shop_admin/itemstocklistupdate.php +++ b/adm/shop_admin/itemstocklistupdate.php @@ -1,4 +1,4 @@ - - - - - + + + +
      상품 검색 - - 전체 상품 개 + + 전체 상품 - + - + - +
      @@ -127,44 +127,44 @@ if ($stx) // 검색 결과일 때만 처음 버튼을 보여줌

      상품 목록

      - - - - - - + + + + + +
      ">상품코드 순 정렬">상품명 순 정렬">창고재고 순 정렬">상품코드 순 정렬">상품명 순 정렬">창고재고 순 정렬 주문대기 가재고 재고수정">판매 순 정렬">판매 순 정렬 관리
      - - + + >수정>수정
      자료가 없습니다.
      - - - - - - - + + + + + + + - - - - - - - - + + + + + + + - - + - diff --git a/adm/shop_admin/itemtypelistupdate.php b/adm/shop_admin/itemtypelistupdate.php index 5bff3a1e8..58a4b032c 100644 --- a/adm/shop_admin/itemtypelistupdate.php +++ b/adm/shop_admin/itemtypelistupdate.php @@ -1,4 +1,4 @@ - - - + +
      -

      -

      +

      +

      상품코드상품명히트
      상품
      추천
      상품
      신규
      상품
      인기
      상품
      할인
      상품
      상품코드상품명히트
      상품
      추천
      상품
      신규
      상품
      인기
      상품
      할인
      상품
      관리
      - - + + >>>>><?=cut_str(stripslashes($row['it_name']), 60, 수정">>>>>><?php echo cut_str(stripslashes($row['it_name']), 60, 수정">
      @@ -44,59 +44,59 @@ include_once (G4_ADMIN_PATH.'/admin.head.php'); - +
      - - 시간 + + 시간
      - + - " id="nw_begin_chk" onclick="if (this.checked == true) this.form.nw_begin_time.value=this.form.nw_begin_chk.value; else this.form.nw_begin_time.value = this.form.nw_begin_time.defaultValue;"> + " id="nw_begin_chk" onclick="if (this.checked == true) this.form.nw_begin_time.value=this.form.nw_begin_chk.value; else this.form.nw_begin_time.value = this.form.nw_begin_time.defaultValue;">
      - + - " id="nw_end_chk" onclick="if (this.checked == true) this.form.nw_end_time.value=this.form.nw_end_chk.value; else this.form.nw_end_time.value = this.form.nw_end_time.defaultValue;"> + " id="nw_end_chk" onclick="if (this.checked == true) this.form.nw_end_time.value=this.form.nw_end_chk.value; else this.form.nw_end_time.value = this.form.nw_end_time.defaultValue;">
      - px + px
      - px + px
      - px + px
      - px + px
      - +
      내용
      @@ -114,7 +114,7 @@ function frmnewwin_check(f) errmsg = ""; errfld = ""; - + check_field(f.nw_subject, "제목을 입력하세요."); @@ -127,6 +127,6 @@ function frmnewwin_check(f) } - diff --git a/adm/shop_admin/newwinformupdate.php b/adm/shop_admin/newwinformupdate.php index e381e3570..a3ddb7ca2 100644 --- a/adm/shop_admin/newwinformupdate.php +++ b/adm/shop_admin/newwinformupdate.php @@ -1,4 +1,4 @@ -

      팝업레이어 관리

      -

      추가된 팝업레이어

      +

      추가된 팝업레이어

      @@ -40,23 +40,23 @@ $result = sql_query($sql); - + - - - - - 시간 - px - px - px - px + + + + + 시간 + px + px + px + px - <?=$row['nw_subject']?> 수정 - <?=$row['nw_subject']?> 삭제 + <?php echo $row['nw_subject']; ?> 수정 + <?php echo $row['nw_subject']; ?> 삭제 - - diff --git a/adm/shop_admin/ordercardhistory.php b/adm/shop_admin/ordercardhistory.php index 3ec2b6922..24119b296 100644 --- a/adm/shop_admin/ordercardhistory.php +++ b/adm/shop_admin/ordercardhistory.php @@ -1,4 +1,4 @@ - - - + +
      전자결제내역 검색 - - 전체 전자결제내역 건 + + 전체 전자결제내역 - +
      @@ -91,25 +91,25 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌 - - - - - - + + + + + + - + - - - - - - + + + + + + - ' @@ -119,8 +119,8 @@ if ($search) // 검색 결과일 때만 처음 버튼을 보여줌 - + - diff --git a/adm/shop_admin/ordercartupdate.php b/adm/shop_admin/ordercartupdate.php index 9894568ec..7076d7dc2 100644 --- a/adm/shop_admin/ordercartupdate.php +++ b/adm/shop_admin/ordercartupdate.php @@ -1,4 +1,4 @@ -

      주문상품 목록

      - -

      주문일시 () / 주문총액

      -

      희망배송일은 () 입니다.

      + +

      주문일시 () / 주문총액

      +

      희망배송일은 () 입니다.

      - - - - - - - - - + + + + + + + + +
      ">주문번호 순 정렬">승인금액 순 정렬">승인번호 순 정렬">승인결과 순 정렬">승인일시 순 정렬">결제자 순 정렬">주문번호 순 정렬">승인금액 순 정렬">승인번호 순 정렬">승인결과 순 정렬">승인일시 순 정렬">결제자 순 정렬
      자료가 없습니다.
      @@ -154,7 +154,7 @@ $pg_anchor = '
      - - - - - - - - + + + + + + + -
      - - - + + + -
      - +
      +
      - + @@ -211,9 +211,9 @@ $pg_anchor = '

        주문결제 내역

        - + - $s_receipt_way .= "+포인트"; ?> - 미수금 + 미수금 @@ -247,14 +247,14 @@ $pg_anchor = '
        - - - - - - - - + + + + + + + +
        @@ -263,17 +263,17 @@ $pg_anchor = '

          결제상세정보

          - + - - - - - - - - + + + + + + + +

          결제상세정보 확인

          @@ -284,133 +284,133 @@ $pg_anchor = '
            - - + + 계좌번호 - + - + - 입금액 - + 입금액 + 입금자 - + 입금확인일시 - 입금 확인일시를 체크해 주세요. - () - + 입금 확인일시를 체크해 주세요. + () + - + - + 휴대폰번호 - + - 결제액 - + 결제액 + 결제 확인일시 - 결제 확인일시를 체크해 주세요. - () - + 결제 확인일시를 체크해 주세요. + () + - + - + 신용카드 입금액 - 0원 - - + 0원 + + 카드 승인일시 - 신용카드 결제 일시 정보가 없습니다. - - + 신용카드 결제 일시 정보가 없습니다. + + 카드 승인취소 - + - + 포인트 - + DC - + 환불액 - + - 배송회사 - 0) { // get 으로 날리는 경우 운송장번호를 넘김 if (strpos($dl['dl_url'], "=")) $invoice = $od['od_invoice']; ?> - (고객센터 ) - 배송회사를 선택해 주세요. - + (고객센터 ) + 배송회사를 선택해 주세요. + - + 운송장번호 - + - + 배송일시 - + - - 원 + + 원 - 현금영수증 - - 현금영수증 확인 - - 현금영수증 발급 - + + 현금영수증 확인 + + 현금영수증 발급 + - @@ -427,8 +427,8 @@ $pg_anchor = '
              - - + $bank_account = $od['od_settle_case']; ?> - + - + - + - + - 원 - " id="od_receipt_bank" class="frm_input" size="10"> 원 + - 결제대행사 - + 결제대행사 + - +
              - - + + - " onclick="if (this.checked == true) this.form.od_bank_time.value=this.form.od_bank_chk.value; else this.form.od_bank_time.value = this.form.od_bank_time.defaultValue;">
              - " id="od_bank_time" class="frm_input" maxlength="19"> + " onclick="if (this.checked == true) this.form.od_bank_time.value=this.form.od_bank_chk.value; else this.form.od_bank_time.value = this.form.od_bank_time.defaultValue;">
              + " id="od_bank_time" class="frm_input" maxlength="19"> - + - + 휴대폰번호 - + - + - 원 - - 결제대행사 + 원 + + 결제대행사 ?> @@ -510,48 +510,48 @@ $pg_anchor = '
                - " onclick="if (this.checked == true) this.form.od_hp_time.value=this.form.od_card_chk.value; else this.form.od_hp_time.value = this.form.od_hp_time.defaultValue;">
                - " id="op_hp_time" class="frm_input" size="19" maxlength="19"> + " onclick="if (this.checked == true) this.form.od_hp_time.value=this.form.od_card_chk.value; else this.form.od_hp_time.value = this.form.od_hp_time.defaultValue;">
                + " id="op_hp_time" class="frm_input" size="19" maxlength="19"> - + - + - 원 - - 결제대행사 + 원 + + 결제대행사 - " onclick="if (this.checked == true) this.form.od_card_time.value=this.form.od_card_chk.value; else this.form.od_card_time.value = this.form.od_card_time.defaultValue;">
                - " id="od_card_time" class="frm_input" size="19" maxlength="19"> + " onclick="if (this.checked == true) this.form.od_card_time.value=this.form.od_card_chk.value; else this.form.od_card_time.value = this.form.od_card_time.defaultValue;">
                + " id="od_card_time" class="frm_input" size="19" maxlength="19"> - 원 + 원 - + - 점 + - 원 + - - 원 + + 원 @@ -559,13 +559,13 @@ $pg_anchor = '

                  - - + + - " onclick="if (this.checked == true) this.form.od_invoice_time.value=this.form.od_invoice_chk.value; else this.form.od_invoice_time.value = this.form.od_invoice_time.defaultValue;">
                  - " id="od_invoice_time" class="frm_input" maxlength="19"> + " onclick="if (this.checked == true) this.form.od_invoice_time.value=this.form.od_invoice_chk.value; else this.form.od_invoice_time.value = this.form.od_invoice_time.defaultValue;">
                  + " id="od_invoice_time" class="frm_input" maxlength="19"> - + 메일발송 @@ -610,24 +610,24 @@ $pg_anchor = '

                    상점메모

                    - +

                    현재 열람 중인 주문에 대한 내용을 메모하는곳입니다.
                    입금, 배송 내역을 메일로 발송할 경우 함께 기록됩니다.

                    - - - - - - + + + + + +
                    - +
                    @@ -639,15 +639,15 @@ $pg_anchor = '

                      주문자/배송지 정보

                      - + - - - - - - + + + + + +
                      @@ -661,33 +661,33 @@ $pg_anchor = '
                        - + - + - + 주문하시는 분 주소 - + - - + -
                        +
                        - + - \ No newline at end of file diff --git a/adm/shop_admin/orderformupdate.php b/adm/shop_admin/orderformupdate.php index 564a8c2e3..42f93da08 100644 --- a/adm/shop_admin/orderformupdate.php +++ b/adm/shop_admin/orderformupdate.php @@ -1,4 +1,4 @@ - - - - - - + + + + +
                        주문내역 검색 - - 전체 주문내역 건 + + 전체 주문내역 - +

                        주문내역 목록

                        -

                        주의! 주문번호를 클릭하여 나오는 주문상세내역의 주소를 외부에서 조회가 가능한곳에 올리지 마십시오.')?>

                        +

                        주의! 주문번호를 클릭하여 나오는 주문상세내역의 주소를 외부에서 조회가 가능한곳에 올리지 마십시오.'); ?>

                        주문내역출력 @@ -130,18 +130,18 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 - + - - - - - - - + + + + + + + @@ -149,18 +149,18 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 - - - - - - + + + + + + + - - + - - - - - - - - + + + + + + + + - - + - diff --git a/adm/shop_admin/orderlist2.php b/adm/shop_admin/orderlist2.php index bca964994..18594576f 100644 --- a/adm/shop_admin/orderlist2.php +++ b/adm/shop_admin/orderlist2.php @@ -77,7 +77,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 ?> - +
                        ">주문번호 순 정렬
                        주문일시
                        ">주문번호 순 정렬
                        주문일시
                        - ">주문자 순 정렬
                        - ">회원ID 순 정렬 + ">주문자 순 정렬
                        + ">회원ID 순 정렬
                        ">건수 순 정렬" class="order_sum">주문합계 순 정렬">주문취소 순 정렬">DC 순 정렬" class="order_sum">입금합계 순 정렬">입금취소 순 정렬" class="order_outstanding">미수금 순 정렬">건수 순 정렬" class="order_sum">주문합계 순 정렬">주문취소 순 정렬">DC 순 정렬" class="order_sum">입금합계 순 정렬">입금취소 순 정렬" class="order_outstanding">미수금 순 정렬 결제수단 관리
                        합 계 -
                        - -
                        - 주문일시 +
                        +
                        + 주문일시
                        -
                        - - +
                        +
                        +

                        누적

                        누적
                        - <?=$lines[$i]['od_id']?> 수정 - <?=$lines[$i]['od_id']?> 삭제 + <?php echo $lines[$i]['od_id']; ?> 수정 + <?php echo $lines[$i]['od_id']; ?> 삭제