Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Nightly Builds
-
None
-
None
-
Operating System: other
Platform: Other
-
15898
Description
isEmail returns true when the domain part ends with a dot
example
ticktock@speakeasy.
returns true.
Quick n Dirty fix
GenericValidator
public static boolean isEmail(String value) {
boolean bValid = true;
if(value.endsWith("."))
{ return false; }