From 098abd373b1e27af0661b71cef45998c9c6ea5a6 Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Mon, 11 Oct 2010 17:20:06 +0000 Subject: [PATCH] fix faulty insert statement --- cgi-bin/pgstatus.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgi-bin/pgstatus.pl b/cgi-bin/pgstatus.pl index c1c338d..373d4f6 100755 --- a/cgi-bin/pgstatus.pl +++ b/cgi-bin/pgstatus.pl @@ -351,10 +351,10 @@ else { $db->do(q{ insert into build_status_latest - (sysname, brancn, latest_snapshot) + (sysname, branch, latest_snapshot) values (?,?,?) }, - undef, $dbdate, $animal, $branch); + undef, $animal, $branch, $dbdate); } $db->commit; -- 2.30.2