Skip to content

Commit

Permalink
Don't allow "legislation" as a tag
Browse files Browse the repository at this point in the history
That gets spat out by ChatGPT and is, of course, useless.
  • Loading branch information
waldoj committed Jan 8, 2024
1 parent 679edd0 commit 63d0f20
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cron/tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@

foreach ($tags as $tag)
{

if ($tag == 'legislation')
{
continue;
}

$sql = 'INSERT INTO tags
SET bill_id=:bill_id,
Expand Down

0 comments on commit 63d0f20

Please sign in to comment.