From 0832f72914e8cad18eea1a70b6f7c447fe4e2d3f Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 6 Nov 2020 16:10:47 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=84=EC=9D=B4=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=A0=84=EC=86=A1=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EC=99=80=20?= =?UTF-8?q?=EC=A0=84=EC=86=A1=20=EA=B2=B0=EA=B3=BC=EB=A5=BC=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=ED=95=98=EB=8A=94=20=EB=B3=80=EC=88=98=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/icode.lms.lib.php | 4 ++-- lib/icode.sms.lib.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/icode.lms.lib.php b/lib/icode.lms.lib.php index 0da41bdb0..4b6b2a1d9 100644 --- a/lib/icode.lms.lib.php +++ b/lib/icode.lms.lib.php @@ -56,8 +56,8 @@ class LMS { } function Init() { - $this->Data = ""; // 발송하기 위한 패킷내용이 배열로 들어간다. - $this->Result = ""; // 발송결과값이 배열로 들어간다. + $this->Data = array(); // 발송하기 위한 패킷내용이 배열로 들어간다. + $this->Result = array(); // 발송결과값이 배열로 들어간다. } function Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate="", $nCount) { diff --git a/lib/icode.sms.lib.php b/lib/icode.sms.lib.php index a2a79a449..679b8b0c5 100644 --- a/lib/icode.sms.lib.php +++ b/lib/icode.sms.lib.php @@ -67,8 +67,8 @@ class SMS { } function Init() { - $this->Data = ""; - $this->Result = ""; + $this->Data = array(); + $this->Result = array(); } function Add($dest, $callBack, $Caller, $msg, $rsvTime="") {