diff options
author | gjones2 <gary@pointblanksecurity.com> | 2012-11-20 16:14:59 -0500 |
---|---|---|
committer | gjones2 <gary@pointblanksecurity.com> | 2012-11-20 16:14:59 -0500 |
commit | 69e6eda22f48dde358c86113250188f40453a764 (patch) | |
tree | 345ace3438cb965a4f10a9deb5e5ed61dad2861f | |
parent | 044e4ea5533f1c14697b7ad408dc0cf0e0327abb (diff) |
Update httemplate/elements/searchbar-cust_bill.html
Fixed issue where html break tags are being escaped erroneously causing break tags to be displayed in the navigation menu.
This issue can be reproduced by doing the following:
1. Change the Freeside user's preference to display the menu on the left.
2. Click "Ticketing Main"
-rw-r--r-- | httemplate/elements/searchbar-cust_bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/searchbar-cust_bill.html b/httemplate/elements/searchbar-cust_bill.html index 7d24fbe9d..169315bf0 100644 --- a/httemplate/elements/searchbar-cust_bill.html +++ b/httemplate/elements/searchbar-cust_bill.html @@ -8,7 +8,7 @@ <BR> <INPUT TYPE="submit" VALUE="<% mt('Search invoices') |h %>" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px;margin-top:3px"> </FORM> - <% $menu_position eq 'left' ? '<BR><BR>' : '' %> + <% $menu_position eq 'left' ? '<BR><BR>' : '' |n %> % } |