|
@@ -839,7 +839,7 @@ class Forum extends Base
|
|
|
{
|
|
|
// 所有我评论的回答
|
|
|
$all_comment = ForumReplyComment::where(['user_id'=>$this->user_id,'is_deleted'=>0])->column('id');
|
|
|
- if(empty($all_comment)) $this->success('ok',['list'=>null,'ext'=>$all_comment]);
|
|
|
+ if(empty($all_comment)) $this->success('ok',['list'=>null]);
|
|
|
$sel_where = [];
|
|
|
$title = input('get.title');
|
|
|
if($title) $sel_where[] = ['i.title','like','%'.$title.'%'];
|