diff options
Diffstat (limited to 'import.final.php')
-rw-r--r-- | import.final.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/import.final.php b/import.final.php index 84ec914..bad603e 100644 --- a/import.final.php +++ b/import.final.php @@ -6,12 +6,12 @@ require_once 'header.php'; // Set those that were gonna be updated to be live - $sql = "UPDATE ebuild SET status = 0 WHERE status = 1;"; + $sql = "UPDATE ebuild SET status = 0 WHERE status IN (1,2);"; $db->query($sql); // Delete the ones flagged for removal -// $sql = "DELETE FROM ebuild WHERE status = 2;"; -// $db->query($sql); + $sql = "DELETE FROM ebuild WHERE status = 3;"; + $db->query($sql); |