Skip to content

Commit

Permalink
Stop ordering untagged bills by view count
Browse files Browse the repository at this point in the history
Ordering by view count is a great way to deal with the backlog of untagged bills, but it's the wrong way to deal with the incoming stream of legislation (because those bills will long remain untagged).
  • Loading branch information
waldoj committed Jan 4, 2024
1 parent adb8b5b commit 24bd53f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cron/tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
tags.bill_id IS NULL AND
summary IS NOT NULL
ORDER BY
bills.view_count DESC,
bills.date_introduced DESC
LIMIT 10';
$stmt = $GLOBALS['dbh']->prepare($sql);
Expand Down

0 comments on commit 24bd53f

Please sign in to comment.