From f28ff5637710dd819def71aba9d06932c5ebdb2c Mon Sep 17 00:00:00 2001 From: Len Kranendonk Date: Thu, 13 Nov 2003 21:06:36 +0000 Subject: [PATCH] bugfix 810036 --- lib/WebGUI/Wobject/HttpProxy/Parse.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/WebGUI/Wobject/HttpProxy/Parse.pm b/lib/WebGUI/Wobject/HttpProxy/Parse.pm index 5354d6913..5ef8fe9f0 100644 --- a/lib/WebGUI/Wobject/HttpProxy/Parse.pm +++ b/lib/WebGUI/Wobject/HttpProxy/Parse.pm @@ -105,6 +105,10 @@ sub start { } $self->output("<$tag"); for (keys %$attr) { + if ($_ eq '/') { + $self->output('/'); + next; + } $self->output(" $_=\""); my $val = $attr->{$_}; if ((lc($tag) eq "input" || lc($tag) eq "textarea" || lc($tag) eq "select")