[sword-svn] r281 - trunk/webapp
scribe at www.crosswire.org
scribe at www.crosswire.org
Sat Sep 20 13:49:03 MST 2008
Author: scribe
Date: 2008-09-20 13:49:03 -0700 (Sat, 20 Sep 2008)
New Revision: 281
Modified:
trunk/webapp/init.jsp
Log:
fixed cast bug
Modified: trunk/webapp/init.jsp
===================================================================
--- trunk/webapp/init.jsp 2008-09-20 20:40:26 UTC (rev 280)
+++ trunk/webapp/init.jsp 2008-09-20 20:49:03 UTC (rev 281)
@@ -310,7 +310,7 @@
String appLang = request.getParameter("lang");
if (appLang == null) {
- appLang = session.getAttribute("lang");
+ appLang = (String)session.getAttribute("lang");
if (appLang == null) {
appLang = defaultLang;
}
More information about the sword-cvs
mailing list