From 2b8d4c247bc9259742359db8258d916329ff199e Mon Sep 17 00:00:00 2001 From: Matthew Wilson Date: Mon, 17 Apr 2006 08:50:18 +0000 Subject: [PATCH] um, weird. --- lib/WebGUI/SQL.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/SQL.pm b/lib/WebGUI/SQL.pm index b6006d69c..7ab9e36af 100644 --- a/lib/WebGUI/SQL.pm +++ b/lib/WebGUI/SQL.pm @@ -795,7 +795,7 @@ sub write { my $sql = shift; my $params = shift; my $sth = $self->prepare($sql); - $sth->execute($params); + $sth->execute(@$params); }