From f6dc1ec7a8d2a8f6de1b9fac99c7b874741e6a45 Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 9 Dec 2013 09:24:38 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=9D=B8=EC=8A=A4=ED=86=A8:=20=EB=9D=BC?= =?UTF-8?q?=EC=9D=B4=EC=84=BC=EC=8A=A4=20=EB=8F=99=EC=9D=98=20=EC=95=88?= =?UTF-8?q?=EB=82=B4=20=EB=82=B4=EC=9A=A9=20=EC=8A=A4=ED=83=80=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/install_config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/install_config.php b/install/install_config.php index bb9f66d5d..f2dc74836 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; } ?> From 92b6c975bd2d72b5070c5efc1ce633e129a30c3b Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 9 Dec 2013 09:25:31 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=9D=B8=EC=8A=A4=ED=86=A8:=20=EB=9D=BC?= =?UTF-8?q?=EC=9D=B4=EC=84=BC=EC=8A=A4=20=EB=8F=99=EC=9D=98=20=EC=95=88?= =?UTF-8?q?=EB=82=B4=20=EB=82=B4=EC=9A=A9=20=EC=BD=94=EB=93=9C=20=EB=B3=B5?= =?UTF-8?q?=EA=B5=AC?= 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 f2dc74836..ba0a464e5 100644 --- a/install/install_config.php +++ b/install/install_config.php @@ -10,7 +10,7 @@ include_once ('../config.php'); $title = G5_VERSION." 초기환경설정 2/3"; include_once ('./install.inc.php'); -if (!isset($_POST['agree']) && $_POST['agree'] != '동의함') { +if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') { echo "

라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다.

".PHP_EOL; echo "
".PHP_EOL; exit;