Browse Source

Merge pull request #890 from dereuromark/master-not-empty-validation

Fix validation error domain for notEmpty
Mark Story 13 years ago
parent
commit
4acc687dcd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/Model/Validator/CakeValidationSet.php

+ 1 - 1
lib/Cake/Model/Validator/CakeValidationSet.php

@@ -280,7 +280,7 @@ class CakeValidationSet implements ArrayAccess, IteratorAggregate, Countable {
 				$message = __d($this->_validationDomain, $name);
 			}
 		} else {
-			$message = __d('cake_dev', 'This field cannot be left blank');
+			$message = __d('cake', 'This field cannot be left blank');
 		}
 
 		return $message;