diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-10 14:19:31 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-10 14:19:31 -0700 |
commit | e7eb845db1afab1cbdbc34ff9c387c5ac554659e (patch) | |
tree | e22d6c66dfae2be7eacf8adb625ed68f2a3d72f6 | |
parent | 09569156eadb85b45012db79d96dc98734240902 (diff) |
fix title escaping
-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" /> |