Bugfix: unpublished items in “similar questions”
Bugfix: unpublished items in "similar questions"
Community Answers v1.5.1
Bug: In a question view in "similar question" unpublished items are shown.
Fix:
file: /components/com_communityanswers/models/answers.php
function: getSimilarQuestions
line: 328
Change to:
Please apply this fix to next release.
Thanx!
Bug: In a question view in "similar question" unpublished items are shown.
Fix:
file: /components/com_communityanswers/models/answers.php
function: getSimilarQuestions
line: 328
'LEFT JOIN #__users u ON a.created_by=u.id where a.id !=' . $qid . ' and (' . $where . ')';
Change to:
'LEFT JOIN #__users u ON a.created_by=u.id where a.id !=' . $qid . ' and (' . $where . ') and a.published !=0';Just add condition 'and a.published !=0' at the end of a query.
Please apply this fix to next release.
Thanx!
Access to viewing replies is restricted.
Showing 8 of 8 replies
You do not have permissions for replying to this topic.