diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-10 14:19:24 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-10 14:19:24 -0700 |
commit | df4a68099abfa067014f36f92874fccefdea662e (patch) | |
tree | 11fc056b87db734b4fe1fb0d84dde513c484eae1 /httemplate/elements/header.html | |
parent | 342a5e0cf59d543ad5d0549a05a3f65688a4058e (diff) |
fix title escaping
Diffstat (limited to 'httemplate/elements/header.html')
-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 374bfa63f..0174e1f92 100644 --- a/httemplate/elements/header.html +++ b/httemplate/elements/header.html @@ -23,7 +23,7 @@ Example: <HTML> <HEAD> <TITLE> - <% $title %> + <% $title_noescape || encode_entities($title) %> </TITLE> <!-- per RT, to prevent IE compatibility mode --> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |