HTML::Element bug

sswartwo@mcgraw-hill.com
Mon, 05 Jan 98 15:42:00 -0500


     
     The following:
     
        use HTML::Element;
     
        my $e = new HTML::Element( 'a',
          'href' => 'http://cgi-foo/foo.cgi?A=B&C=D' );
     
        print $e->starttag( );
     
     Generates:
     
        <A HREF="http://cgi-foo/foo.cgi?A=B&amp;C=D">
     
     This is a case where I don't want the & encoded...
     
     -sls