From 783d17eea13e2e388c115027545866d49f2297ee Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Tue, 9 Jun 2020 07:45:58 -0400 Subject: [PATCH] Update abuse.php --- admin/abuse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/abuse.php b/admin/abuse.php index b0ba0b3..8177650 100644 --- a/admin/abuse.php +++ b/admin/abuse.php @@ -80,7 +80,7 @@ if (isset($_GET['ip_address'])){ }elseif (isset($_GET['VTRID'])){ $VTRID = $_GET['VTRID']; echo "

Review $VTRID

"; - $q = "SELECT * FROM signatures where VTRID = '$VTRID' and signature_status = 'verified' order by petition_id, id DESC "; + $q = "SELECT * FROM signatures where VTRID = '$VTRID' and signature_status <> 'deleted' order by petition_id, id DESC "; $r = $petition->query($q); while($d = mysqli_fetch_array($r)){ $color = 'white'; -- 2.20.1