Update httemplate/elements/searchbar-ticket.html
authorgjones2 <gary@pointblanksecurity.com>
Tue, 20 Nov 2012 21:21:06 +0000 (16:21 -0500)
committergjones2 <gary@pointblanksecurity.com>
Tue, 20 Nov 2012 21:21:06 +0000 (16:21 -0500)
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"

httemplate/elements/searchbar-ticket.html

index 30624f7..ae86dbc 100644 (file)
@@ -5,7 +5,7 @@
     <A HREF="<% FS::TicketSystem->baseurl %>Search/Build.html?NewQuery=1" CLASS="fslink" STYLE="font-size:11px"><% mt('Advanced') |h %></A>
     <INPUT TYPE="submit" VALUE="<% mt('Search tickets') |h %>" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px">
   </FORM>
-  <% $menu_position eq 'left' ? '<BR>' : '' %>
+  <% $menu_position eq 'left' ? '<BR>' : '' |n %>
 
 % }