X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fheader-popup.html;h=327673bc648f35a8fd8886646ffc4fa89c112e80;hb=d4114381c5d95e8acd0d0fc2bbc2b3528bde2ecf;hp=307252afb9354916a413367921f3bf72ec0e2e61;hpb=189cfca44d46995b19bc367297024f253793eaa3;p=freeside.git diff --git a/httemplate/elements/header-popup.html b/httemplate/elements/header-popup.html index 307252afb..327673bc6 100644 --- a/httemplate/elements/header-popup.html +++ b/httemplate/elements/header-popup.html @@ -20,7 +20,7 @@ Example: - <% $title |h %> + <% encode_entities($title) || $title_noescape |n %> @@ -28,14 +28,26 @@ Example: - - <% $head %> +% unless ( $no_jquery ) { + +% if ( $FS::CurrentUser::CurrentUser->option('printtofit') ) { + +% } +% } + + <% $head |n %> - > + > +% if ($m->notes('inline_stylesheet')) { # for email delivery + +% } else { -% if ( $title ) { +% } +% if ( $title || $title_noescape ) { -
<% $title |h %>
+
<% encode_entities($title) || $title_noescape |n %>
% } % unless ( $nobr ) { @@ -43,17 +55,18 @@ Example: % } <%init> -my( $title, $menubar, $etc, $head ) = ( '', '', '', '' ); -#my( $nobr, $nocss ) = ( 0, 0 ); -my $nobr = 0; +my( $title, $title_noescape, $menubar, $etc, $head ) = ( '', '', '', '', '' ); +my( $nobr, $no_jquery ) = ( 0, 0 ); if ( ref($_[0]) ) { my $opt = shift; - $title = $opt->{title}; - $menubar = $opt->{menubar}; - $etc = $opt->{etc}; - $head = $opt->{head}; - $nobr = $opt->{nobr}; -# $nocss = $opt->{nocss}; + $title = $opt->{title}; + $title_noescape = $opt->{title_noescape}; + $menubar = $opt->{menubar}; + $etc = $opt->{etc}; + $head = $opt->{head}; + $nobr = $opt->{nobr}; + #$nocss = $opt->{nocss}; + $no_jquery = $opt->{no_jquery}; } else { ($title, $menubar) = ( shift, shift ); $etc = @_ ? shift : ''; #$etc is for things like onLoad= etc.