[sword-svn] r364 - trunk/webapp

refdoc at crosswire.org refdoc at crosswire.org
Mon Feb 23 06:37:42 MST 2009


Author: refdoc
Date: 2009-02-23 06:37:41 -0700 (Mon, 23 Feb 2009)
New Revision: 364

Modified:
   trunk/webapp/wordsearchresults.jsp
Log:
give a language class to results to allow correct styling


Modified: trunk/webapp/wordsearchresults.jsp
===================================================================
--- trunk/webapp/wordsearchresults.jsp	2009-02-23 13:36:04 UTC (rev 363)
+++ trunk/webapp/wordsearchresults.jsp	2009-02-23 13:37:41 UTC (rev 364)
@@ -118,7 +118,7 @@
 				}
 				mgr.setGlobalOption("Greek Accents", "On");
 
-				//save the search reusult into the session so it can be retrived later on to browse through it
+				//save the search result into the session so it can be retrived later on to browse through it
 				session.setAttribute("SearchResults", results);
 			}
 			else if ( activeSearchTerm == null ) { //no search term given, try to see if we have a valid search result saved
@@ -130,8 +130,7 @@
 		%>
 
 		<p class="textname">&raquo; <%= results.length %> result<%= (results.length == 1)?"s":""%> <t:t>in the text of </t:t><%= activeModule.getDescription() %></p>
-
-		<dl>
+		<dl class="<%= activeModule.getConfigEntry("Lang")%>">
 		<%
 			Integer resultStart = new Integer(request.getParameter("start") != null ? request.getParameter("start") : "0");
 			Integer resultLimit = new Integer(30);




More information about the sword-cvs mailing list