diff --git a/adm/board_form.php b/adm/board_form.php
index 4223285ce..485fa9a2d 100644
--- a/adm/board_form.php
+++ b/adm/board_form.php
@@ -535,7 +535,7 @@ $pg_anchor = '
>
사용
- |
+ |
@@ -548,7 +548,7 @@ $pg_anchor = ' |
-
+ |
@@ -562,7 +562,7 @@ $pg_anchor = ' |
-
+ |
@@ -576,7 +576,7 @@ $pg_anchor = ' |
-
+ |
@@ -589,7 +589,7 @@ $pg_anchor = ' |
-
+ |
@@ -602,7 +602,7 @@ $pg_anchor = ' |
-
+ |
@@ -625,7 +625,7 @@ $pg_anchor = ' |
-
+ |
@@ -638,7 +638,7 @@ $pg_anchor = ' |
-
+ |
@@ -657,7 +657,7 @@ $pg_anchor = ' |
-
+ |
@@ -669,7 +669,7 @@ $pg_anchor = '
|
>사용
|
-
+ |
@@ -682,7 +682,7 @@ $pg_anchor = ' |
-
+ |
@@ -695,7 +695,7 @@ $pg_anchor = ' |
-
+ |
@@ -708,7 +708,7 @@ $pg_anchor = ' |
-
+ |
@@ -721,7 +721,7 @@ $pg_anchor = ' |
-
+ |
@@ -735,7 +735,7 @@ $pg_anchor = ' |
-
+ |
@@ -748,7 +748,7 @@ $pg_anchor = ' |
-
+ |
@@ -762,7 +762,7 @@ $pg_anchor = ' |
-
+ |
@@ -775,7 +775,7 @@ $pg_anchor = ' |
-
+ |
diff --git a/adm/board_form_update.php b/adm/board_form_update.php
index bcb674469..99ff23265 100644
--- a/adm/board_form_update.php
+++ b/adm/board_form_update.php
@@ -337,7 +337,7 @@ if (is_checked('chk_all_use_name')) $all_fields .= " , bo_use_name =
if (is_checked('chk_all_use_signature')) $all_fields .= " , bo_use_signature = '{$bo_use_signature}' ";
if (is_checked('chk_all_use_ip_view')) $all_fields .= " , bo_use_ip_view = '{$bo_use_ip_view}' ";
if (is_checked('chk_all_use_list_view')) $all_fields .= " , bo_use_list_view = '{$bo_use_list_view}' ";
-if (is_checked('chk_all_use_list_file')) $all_fields .= " , bo_use_list_view = '{$bo_use_list_file}' ";
+if (is_checked('chk_all_use_list_file')) $all_fields .= " , bo_use_list_file = '{$bo_use_list_file}' ";
if (is_checked('chk_all_use_list_content')) $all_fields .= " , bo_use_list_content = '{$bo_use_list_content}' ";
if (is_checked('chk_all_use_email')) $all_fields .= " , bo_use_email = '{$bo_use_email}' ";
if (is_checked('chk_all_use_cert')) $all_fields .= " , bo_use_cert = '{$bo_use_cert}' ";
diff --git a/css/default.css b/css/default.css
index 5fd6e4548..c7f48b618 100644
--- a/css/default.css
+++ b/css/default.css
@@ -190,7 +190,9 @@ a.btn_admin:focus, a.btn_admin:hover {text-decoration:none}
.tbl_frm01 table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_frm01 th {width:100px;padding:7px 13px;border:1px solid #e9e9e9;border-left:0;background:#f5f8f9;text-align:left}
.tbl_frm01 td {padding:7px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
-.tbl_frm01 textarea, .frm_input {height:22px;border:1px solid #e4eaec;background:#f7f7f7;color:#000;vertical-align:middle;line-height:2em}
+.tbl_frm01 textarea, .frm_input {border:1px solid #e4eaec;background:#f7f7f7;color:#000;vertical-align:middle;line-height:2em}
+.tbl_frm01 textarea {padding:2px 2px 3px}
+.frm_input {height:22px}
.tbl_frm01 textarea {width:98%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_address {display:block;margin-top:5px}
diff --git a/head.php b/head.php
index 758ce71ed..f48c29c2d 100644
--- a/head.php
+++ b/head.php
@@ -32,7 +32,7 @@ if ($config['cf_include_head']) {
- 
+
-
-
+ 프로그램이 이미 설치되어 있습니다.
+
프로그램이 이미 설치되어 있습니다. 새로 설치하시려면 다음 파일을 삭제 하신 후 새로고침 하십시오.
@@ -44,6 +44,8 @@ $exists_data_dir = true;
if (!is_dir($data_path))
{
?>
+ 설치를 위해 아래 내용을 확인해 주십시오.
+
루트 디렉토리에 아래로 디렉토리를 생성하여 주십시오.
diff --git a/install/install_config.php b/install/install_config.php
index 9e3f83596..fd9f34745 100644
--- a/install/install_config.php
+++ b/install/install_config.php
@@ -10,9 +10,9 @@ include_once ('../config.php');
$title = G5_VERSION." 초기환경설정 2/3";
include_once ('./install.inc.php');
-if (isset($_POST['agree']) && $_POST['agree'] != '동의함') {
- echo " 라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다. ".PHP_EOL;
- echo " ".PHP_EOL;
+if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {
+ echo " 라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다. ".PHP_EOL;
+ echo " ".PHP_EOL;
exit;
}
?>
diff --git a/install/install_db.php b/install/install_db.php
index 288f9f2b5..9854fee6a 100644
--- a/install/install_db.php
+++ b/install/install_db.php
@@ -28,17 +28,29 @@ $g5_shop_install= $_POST['g5_shop_install'];
$dblink = @mysql_connect($mysql_host, $mysql_user, $mysql_pass);
if (!$dblink) {
- echo ' '.PHP_EOL;
- echo ' MySQL Host, User, Password 를 확인해 주십시오. '.PHP_EOL;
- echo ' '.PHP_EOL;
+?>
+
+
+ MySQL Host, User, Password 를 확인해 주십시오.
+
+
+
+'.PHP_EOL;
- echo ' MySQL DB 를 확인해 주십시오. '.PHP_EOL;
- echo ' '.PHP_EOL;
+?>
+
+
+ MySQL DB 를 확인해 주십시오.
+
+
+
+ | |