From 0925fd17aa8d2624d87cfe1f674cbedab84354e7 Mon Sep 17 00:00:00 2001 From: Martin Kamerbeek Date: Wed, 27 Nov 2002 20:44:39 +0000 Subject: [PATCH] Fixed a typo where method checkbox would not load the name field. --- lib/WebGUI/Form.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Form.pm b/lib/WebGUI/Form.pm index cd3e28985..840a6ee92 100644 --- a/lib/WebGUI/Form.pm +++ b/lib/WebGUI/Form.pm @@ -115,7 +115,7 @@ sub checkbox { my ($checkedText, $value); $checkedText = ' checked="1"' if ($_[0]->{checked}); $value = $_[0]->{value} || 1; - return '{extras}.'>'; + return '{extras}.'>'; } #-------------------------------------------------------------------