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
This commit is contained in:
Ingo Schommer 2010-02-05 01:16:18 +00:00 committed by Sam Minnee
parent 96f022be85
commit 13c8b89310

View File

@ -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) {