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()} 내용이 없어 삭제처리"); } }