Author: lukaszlenart
Date: Thu Dec 12 21:38:08 2013
New Revision: 1550538

URL: http://svn.apache.org/r1550538
Log:
Removes unneeded theme attribute

Modified:
    struts/sandbox/trunk/struts2examples/themes/src/main/webapp/edit.jsp

Modified: struts/sandbox/trunk/struts2examples/themes/src/main/webapp/edit.jsp
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2examples/themes/src/main/webapp/edit.jsp?rev=1550538&r1=1550537&r2=1550538&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2examples/themes/src/main/webapp/edit.jsp 
(original)
+++ struts/sandbox/trunk/struts2examples/themes/src/main/webapp/edit.jsp Thu 
Dec 12 21:38:08 2013
@@ -14,14 +14,14 @@
 
 <p>Use the form below to edit your information.</p>
 
-<s:form action="save" method="post" theme="xhtml">
-<s:textfield key="personBean.firstName" /> 
-<s:textfield key="personBean.lastName" /> 
+<s:form action="save" method="post">
+<s:textfield key="personBean.firstName" />
+<s:textfield key="personBean.lastName" />
 <s:select key="personBean.sport" list="sports" />
 <s:radio key="personBean.gender" list="genders" />
 <s:select key="personBean.residency" list="states" listKey="stateAbbr" 
listValue="stateName" />
 <s:checkbox key="personBean.over21" />
-<s:checkboxlist key="personBean.carModels" list="carModelsAvailable" 
theme="KUTheme" />
+<s:checkboxlist key="personBean.carModels" list="carModelsAvailable" />
 <s:submit key="submit" />
 </s:form>
 


Reply via email to