File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/definitions/behaviors Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ $.fn.form = function(parameters) {
642
642
if ( ( t = $field . filter ( '[data-' + metadata . validate + '="' + identifier + '"]' ) ) . length > 0 ) {
643
643
return t ;
644
644
}
645
- module . debug ( 'Field identifier not found.' , identifier ) ;
645
+ module . error ( error . noField . replace ( '{ identifier}' , identifier ) ) ;
646
646
return $ ( '<input/>' ) ;
647
647
} ,
648
648
fields : function ( fields ) {
@@ -1629,6 +1629,7 @@ $.fn.form.settings = {
1629
1629
method : 'The method you called is not defined.' ,
1630
1630
noRule : 'There is no rule matching the one you specified' ,
1631
1631
oldSyntax : 'Starting in 2.0 forms now only take a single settings object. Validation settings converted to new syntax automatically.' ,
1632
+ noField : 'Field identifier {identifier} not found' ,
1632
1633
noElement : 'This module requires ui {element}'
1633
1634
} ,
1634
1635
You can’t perform that action at this time.
0 commit comments