File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Ajax/semantic/html/collections/form Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -178,20 +178,20 @@ public function run(JsUtils $js) {
178
178
}
179
179
foreach ($ this ->_fields as $ field ){
180
180
if ($ field instanceof HtmlFormField){
181
- $ compo = $ this ->addCompoValidation ($ compo , $ field );
181
+ $ this ->addCompoValidation ($ compo , $ field );
182
182
}
183
183
}
184
184
foreach ($ this ->content as $ field ){
185
185
if ($ field instanceof HtmlFormFields){
186
186
$ items =$ field ->getItems ();
187
187
foreach ($ items as $ _field ){
188
188
if ($ _field instanceof HtmlFormField)
189
- $ compo = $ this ->addCompoValidation ($ compo , $ _field );
189
+ $ this ->addCompoValidation ($ compo , $ _field );
190
190
}
191
191
}
192
192
}
193
193
foreach ($ this ->_extraFieldRules as $ field =>$ fieldValidation ){
194
- $ compo = $ this ->addExtraCompoValidation ($ compo , $ fieldValidation );
194
+ $ this ->addExtraCompoValidation ($ compo , $ fieldValidation );
195
195
}
196
196
$ this ->_runValidationParams ($ compo ,$ js );
197
197
return $ this ->_bsComponent ;
You can’t perform that action at this time.
0 commit comments