Subject: | uri filter doesn't escape "@" |
As the title, the FILTER uri does not work properly now.
Since URI is such a common module that I don't think it does hurt if
using URI::Escape::uri_escape replacing the code now.
-- test --
[% "foo@bar" FILTER uri %]
-- expect --
foo%40bar
The above is what I tried adding in t/filter.t, failed.