From 359d07b04d2403be9135b11e2bddb84d4b642b02 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 16 Oct 2007 22:12:04 +0000 Subject: [PATCH] fixes #484, validator nospace not validating correctly --- lib/Doctrine/Validator/Nospace.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Validator/Nospace.php b/lib/Doctrine/Validator/Nospace.php index 5e0ba613b..ee744f310 100644 --- a/lib/Doctrine/Validator/Nospace.php +++ b/lib/Doctrine/Validator/Nospace.php @@ -40,6 +40,6 @@ class Doctrine_Validator_Nospace extends Doctrine_Validator_Driver */ public function validate($value) { - return ($value === null || ! preg_match('/\s\t\r\n/', $value)); + return ($value === null || ! preg_match('/[\s\t\r\n]/', $value)); } -} \ No newline at end of file +}