From 903d139d00e0b9fc88376f5cceab8b70f94b6ad9 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 15 May 2013 09:24:25 +0900 Subject: [PATCH 1/2] git rm -r --cached . --- config.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/config.php b/config.php index eb8e86cc3..ebd759b78 100644 --- a/config.php +++ b/config.php @@ -1,4 +1,4 @@ -= '5.3.0') { /* 보안서버 도메인 -회원가입, 글쓰기에 사용되는 https 로 시작되는 주소를 말합니다. +회원가입, 글쓰기에 사용되는 https 로 시작되는 주소를 말합니다. 포트가 있다면 도메인 뒤에 :443 과 같이 입력하세요. 보안서버주소가 없다면 공란으로 두시면 되며 보안서버주소 뒤에 / 는 붙이지 않습니다. 입력예) https://www.domain.com:443/gnuboard4s @@ -53,13 +53,20 @@ define('G4_SNS_DIR', 'sns'); define('G4_SYNDI_DIR', 'syndi'); // URL 은 브라우저상에서의 경로 (도메인으로 부터의) - if (G4_DOMAIN) { define('G4_URL', G4_DOMAIN); } else { - define('G4_URL', $g4_path['url']); + if (isset($g4_path['url'])) + define('G4_URL', $g4_path['url']); + else + define('G4_URL', ''); +} + +if (isset($g4_path['path'])) { + define('G4_PATH', $g4_path['path']); +} else { + define('G4_PATH', ''); } -define('G4_PATH', $g4_path['path']); define('G4_ADMIN_URL', G4_URL.'/'.G4_ADMIN_DIR); define('G4_BBS_URL', G4_URL.'/'.G4_BBS_DIR); From 3566f99357f9b9d491dd66e0f1779266ca6278a9 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 15 May 2013 09:30:55 +0900 Subject: [PATCH 2/2] =?UTF-8?q?G4=5FKCP=20=EB=A5=BC=20G4=5FKCPCERT=20?= =?UTF-8?q?=EB=A1=9C=20=EC=83=81=EC=88=98=EB=AA=85=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=B0=8F=20kcp=20=ED=8F=B4=EB=8D=94=EB=A5=BC=20kcpcert=20?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 8 ++++---- mobile/skin/member/basic/register_form.skin.php | 2 +- .../member/basic/register_form_update.head.skin.php | 7 ------- .../member/basic/register_form_update.tail.skin.php | 7 ------- plugin/{kcp => kcpcert}/_common.php | 0 plugin/{kcp => kcpcert}/bin/ct_cli | Bin plugin/{kcp => kcpcert}/kcpcert_config.php | 2 +- plugin/{kcp => kcpcert}/kcpcert_form.php | 4 ++-- plugin/{kcp => kcpcert}/kcpcert_result.php | 0 plugin/{kcp => kcpcert}/lib/ct_cli_lib.php | 0 skin/member/basic/register_form.skin.php | 2 +- 11 files changed, 9 insertions(+), 23 deletions(-) delete mode 100644 mobile/skin/member/basic/register_form_update.head.skin.php delete mode 100644 mobile/skin/member/basic/register_form_update.tail.skin.php rename plugin/{kcp => kcpcert}/_common.php (100%) rename plugin/{kcp => kcpcert}/bin/ct_cli (100%) rename plugin/{kcp => kcpcert}/kcpcert_config.php (95%) rename plugin/{kcp => kcpcert}/kcpcert_form.php (97%) rename plugin/{kcp => kcpcert}/kcpcert_result.php (100%) rename plugin/{kcp => kcpcert}/lib/ct_cli_lib.php (100%) diff --git a/config.php b/config.php index ebd759b78..6a0ae943a 100644 --- a/config.php +++ b/config.php @@ -1,4 +1,4 @@ -