From 057bf044261e95cec9d56065bbb2bb3e4b179209 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 12 Nov 2013 15:35:00 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=A4=EC=B9=98=EC=8B=9C=20soap=20=EB=AA=A8?= =?UTF-8?q?=EB=93=88=20=EC=B2=B4=ED=81=AC=20=EC=BD=94=EB=93=9C=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/library.check.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install/library.check.php b/install/library.check.php index 08889cc50..96e77ce3f 100644 --- a/install/library.check.php +++ b/install/library.check.php @@ -10,5 +10,9 @@ function die_utf8($msg) } if(!extension_loaded('gd') || !function_exists('gd_info')) - die('GD 라이브러리를 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.'); + die_utf8('GD 라이브러리를 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.'); + +// SOAP 모듈체크 +if(!extension_loaded('soap') || !class_exists('SOAPClient')) + die_utf8('SOAP 확장모듈을 설치하신 후 '.G5_VERSION.' 설치를 진행해 주십시오.'); ?> \ No newline at end of file