diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-01-28 16:27:38 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-01-28 16:27:38 -0800 |
commit | 1f0ec9f162ffb1ce72ddd0feba9407a65aed9f63 (patch) | |
tree | 0fd6bd7e28a11841f4ed15d3d3a7e10359af2444 | |
parent | 5f7ce7b22d70058613be046ee67778d6d9969fd9 (diff) |
RT double-escaping fix
-rw-r--r-- | httemplate/elements/header.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/header.html b/httemplate/elements/header.html index 98a8d7c5e..c8a83ca7e 100644 --- a/httemplate/elements/header.html +++ b/httemplate/elements/header.html @@ -24,7 +24,7 @@ Example: <HTML> <HEAD> <TITLE> - <% encode_entities($title) || $title_noescape %> + <% encode_entities($title) || $title_noescape |n %> </TITLE> <!-- per RT, to prevent IE compatibility mode --> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |