Logged In: NO

Just tested for this bug with the following code, and found that it worked fine. Can you provide code that demonstrates this bug?

--------------------------
cat perl.pl
#!/usr/bin/perl -w

use HTML::Template ;

my $t = HTML::Template->new('filename' => 'test.tmpl', 'default_escape' => 'url') ;

$t->param('url' => 'http://www.houses.com/?bla=xyz&bla2=1') ;

print $t->output ;

----------------------

cat test.tmpl
<tag>
This is some text

:<tmpl_var url>:

:<tmpl_var url escape=0>:
</tag>

----------------------------
perl perl.pl
<tag>
This is some text

:http%3A%2F%2Fwww.houses.com%2F%3Fbla%3Dxyz%26bla2%3D1:

:http://www.houses.com/?bla=xyz&bla2=1:
</tag>