aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-06-03 14:23:20 +0100
committerStruan Donald <struan@exo.org.uk>2011-06-03 14:23:20 +0100
commitb962dd1e3b8a76c6cff07fb799b42d7dd723e0a4 (patch)
tree7828de6b63ba5203cd907bda44d70a4f4c89ecfb
parentdcce0c9ec9c24feb3931934bd1a727bdc2ad7ca4 (diff)
escape email string
-rw-r--r--templates/web/default/report/display.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/default/report/display.html b/templates/web/default/report/display.html
index 2225934a5..8ea902aa2 100644
--- a/templates/web/default/report/display.html
+++ b/templates/web/default/report/display.html
@@ -44,7 +44,7 @@
<form action="[% c.uri_for( '/alert/subscribe' ) %]" method="post" id="email_alert_box">
<p>[% loc('Receive email when updates are left on this problem' ) %]</p>
<label class="n" for="alert_rznvy">[% loc('Email') %]</label>
- <input type="text" name="rznvy" id="alert_rznvy" value="[% email %]" size="30">
+ <input type="text" name="rznvy" id="alert_rznvy" value="[% email | html %]" size="30">
<input type="hidden" name="id" value="[% problem.id %]">
<input type="hidden" name="type" value="updates">
<input type="submit" value="[% loc('Subscribe') %]">