From 034b009d83acb78f0380a2e9fbfd077c5f919247 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 8 May 2013 11:06:00 +0900 Subject: [PATCH] =?UTF-8?q?G4=5FDOMAIN=20=EC=82=AC=EC=9A=A9=EC=95=88?= =?UTF-8?q?=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.php b/config.php index cda58baf6..f006b663f 100644 --- a/config.php +++ b/config.php @@ -24,7 +24,7 @@ if (PHP_VERSION >= '5.3.0') { 보안서버주소가 없다면 공란으로 두시면 되며 보안서버주소 뒤에 / 는 붙이지 않습니다. 입력예) https://www.domain.com:443/gnuboard4s */ -define('G4_DOMAIN', ''); +define('G4_DOMAIN', ''); // 사용하지 않습니다. define('G4_HTTPS_DOMAIN', ''); /* @@ -62,6 +62,12 @@ if (G4_DOMAIN) { define('G4_URL', ''); } +if (G4_HTTPS_DOMAIN) { + define('G4_URL', G4_HTTPS_DOMAIN); +} else { + define('G4_URL', G4_DOMAIN); +} + if (isset($g4_path['path'])) { define('G4_PATH', $g4_path['path']); } else {