diff --git a/app/Controllers/Front/BoardController.php b/app/Controllers/Front/BoardController.php index 9f49e42..a9bd5fb 100644 --- a/app/Controllers/Front/BoardController.php +++ b/app/Controllers/Front/BoardController.php @@ -195,7 +195,7 @@ class BoardController extends FrontController //Category 및 Status 조건추가 protected function index_setCondition() { - $this->_model->where("category", $this->_viewDatas['category']->getPrimaryKey()); + $this->_model->where("category_uid", $this->_viewDatas['category']->getPrimaryKey()); $this->_model->where("status", DEFAULTS['STATUS']); parent::index_setCondition(); }