Commit 46153e7 1 parent 2fb431d commit 46153e7 Copy full SHA for 46153e7
File tree 1 file changed +13
-13
lines changed
plugins/javatemplates/src/main/java/org/apache/struts2/views/java/simple
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -84,22 +84,22 @@ public void generate() throws IOException {
84
84
characters (itemValueStr );
85
85
super .end ("label" );
86
86
87
- // Hidden input section
88
- a = new Attributes ();
89
- a .add ("type" , "hidden" )
90
- .add ("id" ,
91
- "__multiselect_"
92
- + StringUtils .defaultString (StringEscapeUtils .escapeHtml4 (id )))
93
- .add ("name" ,
94
- "__multiselect_"
95
- + StringUtils .defaultString (StringEscapeUtils .escapeHtml4 (name )))
96
- .add ("value" , "" ).addIfTrue ("disabled" , disabled );
97
- start ("input" , a );
98
- end ("input" );
99
-
100
87
stack .pop ();
101
88
cnt ++;
102
89
}
90
+
91
+ // Hidden input section
92
+ Attributes a = new Attributes ();
93
+ a .add ("type" , "hidden" )
94
+ .add ("id" ,
95
+ "__multiselect_"
96
+ + StringUtils .defaultString (StringEscapeUtils .escapeHtml4 (id )))
97
+ .add ("name" ,
98
+ "__multiselect_"
99
+ + StringUtils .defaultString (StringEscapeUtils .escapeHtml4 (name )))
100
+ .add ("value" , "" ).addIfTrue ("disabled" , disabled );
101
+ start ("input" , a );
102
+ end ("input" );
103
103
}
104
104
}
105
105
You can’t perform that action at this time.
0 commit comments