From 077e4110a3854345e01842d42bb6a24e1c4b43d3 Mon Sep 17 00:00:00 2001 From: MusikAnimal Date: Tue, 26 Jul 2016 14:22:12 -0400 Subject: [PATCH] Show only records after June 20, 2016 Bug: T138317 --- src/Dao/PlagiabotDao.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Dao/PlagiabotDao.php b/src/Dao/PlagiabotDao.php index 24c5eac8..fd0dfed3 100644 --- a/src/Dao/PlagiabotDao.php +++ b/src/Dao/PlagiabotDao.php @@ -113,6 +113,9 @@ public function getPlagiarismRecords( $n = 50, $options ) { $filters[] = "wp_project IN ($bindParams)"; } + // show only records after June 20, 2016; See phab:T138317 + $filters[] = "diff_timestamp > 20160620000000"; + // construct necessary SQL based on filters if ( !empty( $filters ) ) { $filterSql = self::buildWhere( $filters );