From 13c8b89310328b8a3bb8c59c7cbe699500995b65 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 5 Feb 2010 01:16:18 +0000 Subject: [PATCH] MINOR Removed message alteration from ValidationResult->error() to make it more predictable for string matching in unit tests like SecurityTest git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98275 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/ValidationResult.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/ValidationResult.php b/core/ValidationResult.php index 9c4ed3f0b..cf51dbbc6 100644 --- a/core/ValidationResult.php +++ b/core/ValidationResult.php @@ -34,9 +34,6 @@ class ValidationResult extends Object { * @param $code An optional error code string, that can be accessed with {@link $this->codeList()}. */ function error($message, $code = null) { - $message = trim($message); - if(substr($message,-1) == '.') $message = substr($message,0,-1); - $this->isValid = false; if($code) {