Skip to content

Commit

Permalink
fix: πŸ› Remove media files in Domain Manifest Generation
Browse files Browse the repository at this point in the history
βœ… Closes: #207
  • Loading branch information
FantasticoFox committed Dec 6, 2021
1 parent 033b5d5 commit 0382953
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion includes/SpecialWitness.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ public function helperGenerateDomainManifestTable( $dbw, $out, $witness_event_id
$res = $dbw->select(
'revision_verification',
[ 'page_title', 'max(rev_id) as rev_id' ],
"page_title NOT LIKE 'Data Accounting:%'",
[
"page_title NOT LIKE 'Data Accounting:%'",
"page_title NOT LIKE 'File:%'"
],
__METHOD__,
[ 'GROUP BY' => 'page_title' ]
);
Expand Down

0 comments on commit 0382953

Please sign in to comment.