From ff9c9d84a9c292c22b7b9ecc4861512d0585d4fd Mon Sep 17 00:00:00 2001 From: doctrine Date: Wed, 26 Apr 2006 07:41:33 +0000 Subject: [PATCH] Ticket #6 fixed --- classes/Validator.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/Validator.class.php b/classes/Validator.class.php index 6cc9ee398..a17fab008 100644 --- a/classes/Validator.class.php +++ b/classes/Validator.class.php @@ -8,11 +8,11 @@ class Doctrine_Validator { */ /** - * constant for length error + * constant for length validation error */ const ERR_LENGTH = 0; /** - * constant for type error + * constant for type validation error */ const ERR_TYPE = 1; /** @@ -20,7 +20,7 @@ class Doctrine_Validator { */ const ERR_VALID = 2; /** - * constant for unique validator error + * constant for unique validation error */ const ERR_UNIQUE = 3; @@ -120,7 +120,7 @@ class Doctrine_Validator { $type = gettype($var); switch($type): case "string": - if(preg_match("/^[0-9]*$/",$var)) return "integer"; + if(preg_match("/^[0-9]+$/",$var)) return "integer"; elseif(is_numeric($var)) return "float"; else return $type; break;