[sword-svn] r293 - trunk/webapp

scribe at www.crosswire.org scribe at www.crosswire.org
Wed Sep 24 16:04:56 MST 2008


Author: scribe
Date: 2008-09-24 16:04:56 -0700 (Wed, 24 Sep 2008)
New Revision: 293

Modified:
   trunk/webapp/wordsearchresults.jsp
Log:
fixed syntax error from utf-8 changes


Modified: trunk/webapp/wordsearchresults.jsp
===================================================================
--- trunk/webapp/wordsearchresults.jsp	2008-09-24 22:31:03 UTC (rev 292)
+++ trunk/webapp/wordsearchresults.jsp	2008-09-24 23:04:56 UTC (rev 293)
@@ -21,7 +21,7 @@
 
 	String resetSearchTerm = request.getParameter("searchTerm");
 	if (resetSearchTerm != null) {
-		resetSearchTerm = new String(resetSearchTerm.getBytes("iso8859-1"), "UTF-8") %>
+		resetSearchTerm = new String(resetSearchTerm.getBytes("iso8859-1"), "UTF-8");
 		mgr.setGlobalOption("Greek Accents", "Off");
 		session.setAttribute("ActiveSearchTerm", mgr.filterText("Greek Accents", resetSearchTerm));
 		mgr.setGlobalOption("Greek Accents", "On");




More information about the sword-cvs mailing list