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 );