You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a DB field has the case insensitive string password or email, it is validated so with no means of overriding it unless possibly the method modifyFieldWithClass( String fieldName, String cssClassName ) where a custom class is used.
This sometimes undesirable Artificial Intelligence is available in the lines 2049-2057 in ajaxCRUD.class.php file as:
//change the type of textbox field if a password (HTML 5 compatible)
if (stristr($field, "password")){
$fieldType = "password";
}
//change the type of textbox field if a password (HTML 5 compatible)
if (stristr($field, "email")){
$fieldType = "email";
}
The text was updated successfully, but these errors were encountered:
If a DB field has the case insensitive string password or email, it is validated so with no means of overriding it unless possibly the method modifyFieldWithClass( String fieldName, String cssClassName ) where a custom class is used.
This sometimes undesirable Artificial Intelligence is available in the lines 2049-2057 in ajaxCRUD.class.php file as:
The text was updated successfully, but these errors were encountered: