summaryrefslogtreecommitdiff
path: root/httemplate/elements/header.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/header.html')
-rw-r--r--httemplate/elements/header.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/httemplate/elements/header.html b/httemplate/elements/header.html
index 30a6189f6..858be71da 100644
--- a/httemplate/elements/header.html
+++ b/httemplate/elements/header.html
@@ -23,7 +23,7 @@ Example:
<HTML>
<HEAD>
<TITLE>
- <% $title |h %>
+ <% $title %>
</TITLE>
<!-- per RT, to prevent IE compatibility mode -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
@@ -162,7 +162,7 @@ Example:
<TD CLASS="background" HEIGHT="100%" VALIGN="top"> <!-- WIDTH="100%"> -->
<FONT SIZE=6>
- <% $title |h %>
+ <% $title_noescape || encode_entities($title) %>
</FONT>
% unless ( $nobr ) {
@@ -172,7 +172,7 @@ Example:
<% $menubar !~ /^\s*$/ ? "$menubar<BR><BR>" : '' %>
<%init>
-my( $title, $menubar, $etc, $head ) = ( '', '', '', '' );
+my( $title, $title_noescape, $menubar, $etc, $head ) = ( '', '', '', '', '' );
my( $nobr, $nocss ) = ( 0, 0 );
my $mobile;
@@ -180,6 +180,7 @@ my $mobile;
if ( ref($_[0]) ) {
my $opt = shift;
$title = $opt->{title};
+ $title_noescape = $opt->{title_noescape};
$menubar = $opt->{menubar};
$etc = $opt->{etc};
$head = $opt->{head};