From 2135cc76fa7c03e89fe9ecb96a01e2154f53f79b Mon Sep 17 00:00:00 2001 From: Will Budic Date: Mon, 2 Mar 2020 05:32:23 +1100 Subject: [PATCH] id fix. --- htdocs/cgi-bin/data.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/cgi-bin/data.cgi b/htdocs/cgi-bin/data.cgi index a306b75..6fa00f4 100755 --- a/htdocs/cgi-bin/data.cgi +++ b/htdocs/cgi-bin/data.cgi @@ -194,7 +194,7 @@ sub NotConfirmed { #Get ids and build confirm table and check my $stm = $stmS ." "; foreach my $id ($cgi->param('chk')){ - $stm = $stm . "ID = " . $id . " OR "; + $stm = $stm . "PID = " . $id . " OR "; } $stm =~ s/ OR $//; $stm .= $stmE; -- 2.34.1