diff options
Diffstat (limited to 'httemplate/elements/tr-select-cust_location.html')
-rw-r--r-- | httemplate/elements/tr-select-cust_location.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/elements/tr-select-cust_location.html b/httemplate/elements/tr-select-cust_location.html index 5e938b53a..f26649763 100644 --- a/httemplate/elements/tr-select-cust_location.html +++ b/httemplate/elements/tr-select-cust_location.html @@ -143,7 +143,7 @@ Example: </SCRIPT> <TR> - <TH ALIGN="right">Service location</TH> + <<%$th%> ALIGN="right"><% $opt{'label'} || 'Service location' %></<%$th%>> <TD COLSPAN=7> <SELECT NAME="locationnum" onChange="locationnum_changed(this);"> <OPTION VALUE=""><% $opt{'empty_label'} || '(default service address)' |h %> @@ -169,6 +169,7 @@ Example: #'onchange' ? probably not 'disabled' => $disabled, 'no_asterisks' => 1, + 'no_bold' => $opt{'no_bold'}, ) %> @@ -221,4 +222,6 @@ my $disabled = ( $locationnum == -1 || ($editable && $locationnum) ) ? '' : 'DISABLED'; +my $th = $opt{'no_bold'} ? 'TD' : 'TH'; + </%init> |