Skip to content

Commit

Permalink
Update base_topiclist.php
Browse files Browse the repository at this point in the history
[FIX] Ignore Deleted Pages In Tag Filtered Page Lists
  • Loading branch information
ThomasWeinert authored Jul 7, 2020
1 parent 70f36f4 commit 3eee944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/base_topiclist.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ function loadListByTag(
$publishedFilter = " AND (t.published_from = t.published_to
OR (t.published_from <= '%d' AND t.published_to >= '%d'))";
} else {
$publishedFilter = '';
$publishedFilter = ' AND t.is_deleted = 0 ';
$tableTopics = $this->tableTopics;
$tableTrans = $this->tableTopicsTrans;
}
Expand Down

0 comments on commit 3eee944

Please sign in to comment.