2018-04-11 09:35发布
问题详情页面,回答的评论数量不统计,始终是 0 ! 请官方给个修改方法!
已经有回复了,统计数量还是显示0,造成用户以为没有回复成功,同一条回复发多遍,手机版和电脑版都是
这个是更新回答评论代码无效的问题:
找到这个文件:
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; }
最多设置5个标签!
付费偷看金额在0.1-10元之间
这个是更新回答评论代码无效的问题:
找到这个文件:
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; }
一周热门 更多>