aboutsummaryrefslogtreecommitdiff
path: root/templates/change.tmpl
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-11-18 02:48:24 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-11-18 02:48:24 -0500
commite307eeda3d55446f4bdeb2ac48f4fef0c24b1f3d (patch)
tree296ce737b575876a97c111b26d913d7ec72a20b1 /templates/change.tmpl
parent15269fed646bf14692061e634969c98b614daaad (diff)
downloadikiwiki-e307eeda3d55446f4bdeb2ac48f4fef0c24b1f3d.tar
ikiwiki-e307eeda3d55446f4bdeb2ac48f4fef0c24b1f3d.tar.gz
html escaping complication
Can't escape things to entities if the template then escapes the entities. (aggregate doesn't have this problem.)
Diffstat (limited to 'templates/change.tmpl')
-rw-r--r--templates/change.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/change.tmpl b/templates/change.tmpl
index 0aebae61e..0e61a80f4 100644
--- a/templates/change.tmpl
+++ b/templates/change.tmpl
@@ -32,14 +32,14 @@
<div class=changelog>
<TMPL_LOOP NAME="MESSAGE">
<TMPL_IF NAME="LINE">
-<TMPL_VAR NAME="LINE" ESCAPE="HTML"><br />
+<TMPL_VAR NAME="LINE"><br />
</TMPL_IF>
</TMPL_LOOP>
</div>
<TMPL_IF NAME="DIFF">
<div class=diff>
<pre>
-<TMPL_VAR NAME="DIFF" ESCAPE="HTML">
+<TMPL_VAR NAME="DIFF">
</pre>
</div>
</TMPL_IF>