ElisDN / yii2-demo-shop

Source code for Yii2 workshop
https://elisdn.ru/yii2-shop
Other
154 stars 113 forks source link

backend -> Blog -> comments -> filter on active field #25

Closed the-toxic closed 6 years ago

the-toxic commented 6 years ago

Filter not work. /backend/forms/Blog/CommentSearch.php

Not correct: $query->andFilterWhere([ 'id' => $this->id, 'post_id' => $this->post_id, ]);

Need: $query->andFilterWhere([ 'id' => $this->id, 'active' => $this->active, ]);

ElisDN commented 6 years ago

Fixed. Thanks!