Open dboehmer opened 3 years ago
In another project I just realized that URLs may not be simply pasted in HTML element attributes.
Special characters are in fact URL-encoded but URLs like foo?a=1&b=2 might contain & which is a reserved character in HTML.
foo?a=1&b=2
&
$ ack '="\[% .*url' root/templates/ root/templates/project/import.tt 3:<form method="post" action="[% import_url %]" class="import"> ...
Rough estimate: >200 occurrences
Could be solved with #120
In another project I just realized that URLs may not be simply pasted in HTML element attributes.
Special characters are in fact URL-encoded but URLs like
foo?a=1&b=2
might contain&
which is a reserved character in HTML.Rough estimate: >200 occurrences
Could be solved with #120