Bugfix: unpublished items in "similar questions"

ruhowl
ruhowl
  • ruhowl
  • 13 months ago
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
'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.
Loading...
Confirm delete? This action is irreversible and the data will be deleted permanently. Do you want to continue? Confirm Add New Delete Unpublish Cancel Import Uninstall The selected item successfully deleted.
Shondalai