X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fheader.html;fp=httemplate%2Felements%2Fheader.html;h=858be71da054dda50bf5795b6a274461d3addd97;hp=30a6189f661a1866f4582eefaf296f48144dc1ea;hb=d647e72f22abc6715b6597d17a68851409b53d0b;hpb=39fbd35d58ba6bedd6c8af1f4b0c25a166acf3c3 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: - <% $title |h %> + <% $title %> @@ -162,7 +162,7 @@ Example: - <% $title |h %> + <% $title_noescape || encode_entities($title) %> % unless ( $nobr ) { @@ -172,7 +172,7 @@ Example: <% $menubar !~ /^\s*$/ ? "$menubar

" : '' %> <%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};