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="") {