From 24bd53f7c10be353feba568800a7ebcd416196c6 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Thu, 4 Jan 2024 14:52:39 -0500 Subject: [PATCH] Stop ordering untagged bills by view count 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). --- cron/tags.php | 1 - 1 file changed, 1 deletion(-) diff --git a/cron/tags.php b/cron/tags.php index 35570d7..f495b06 100644 --- a/cron/tags.php +++ b/cron/tags.php @@ -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);