From 4bbf77710a7011ae1fd7a680a14c4da8943de7bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Fri, 13 Sep 2024 22:09:33 +0900 Subject: [PATCH] Automation init...3 --- app/Libraries/MyStorage/Mangboard/BoardLibrary.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Libraries/MyStorage/Mangboard/BoardLibrary.php b/app/Libraries/MyStorage/Mangboard/BoardLibrary.php index b403576..bcc733a 100644 --- a/app/Libraries/MyStorage/Mangboard/BoardLibrary.php +++ b/app/Libraries/MyStorage/Mangboard/BoardLibrary.php @@ -77,7 +77,7 @@ class BoardLibrary $this->getModel()->modify($this->_entity, $this->_mediaTags); log_message("notice", __FUNCTION__ . "=>{$this->_entity->getPK()}:{$this->_entity->getTitle()} 수정 작업 완료"); } else { - $this->getModel()->delete([$this->getModel()->getPKField() => $$this->_entity->getPK()]); + $this->getModel()->delete([$this->getModel()->getPKField() => $this->_entity->getPK()]); log_message("warning", __FUNCTION__ . "=>{$this->_entity->getPK()}:{$this->_entity->getTitle()} 내용이 없어 삭제처리"); } }