From 28571b2e0bf3b96ef435a28b88f5c89ce569aa18 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 7 Mar 2003 03:37:29 +0000 Subject: [PATCH] fixed a netscape 6 bug --- 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 9c4d0d8ea..8573145af 100644 --- a/lib/WebGUI/Form.pm +++ b/lib/WebGUI/Form.pm @@ -1154,7 +1154,7 @@ sub selectList { $output .= ' selected="1"'; } } - $output .= ' />'.${$_[0]->{options}}{$key}; + $output .= '>'.${$_[0]->{options}}{$key}.''; } $output .= ''; return $output;