bug:3.7问答评论的回复数不统计

2018-04-11 09:35发布

问题详情页面,回答的评论数量不统计,始终是 0 ! 请官方给个修改方法!

1

已经有回复了,统计数量还是显示0,造成用户以为没有回复成功,同一条回复发多遍,手机版和电脑版都是

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
1条回答
mishen - whatsns产品经理
1楼-- · 2018-04-11 09:50

这个是更新回答评论代码无效的问题:

找到这个文件:

application\models\Answer_comment_model.php

代码 32行,找到 :

function add 方法:


将这个方法替换成下面的:

   //添加回答评论
	function add($answerid, $conmment, $authorid, $author) {
		$conmment = checkwordsglobal ( $conmment );
		$data = array ('aid' => $answerid, 'authorid' => $authorid, 'author' => $author, 'content' => $conmment, 'time' => time () );

		$this->db->insert ( 'answer_comment', $data );
		$id = $this->db->insert_id ();
		$data = array ('comments' => 'comments +1' );
		$this->db->where ( 'id', $answerid );
		$this->db->update ( 'answer', $data );
		return $id;
	}


一周热门 更多>