From 7038992537e6bd590b13269aed49577b7083edf7 Mon Sep 17 00:00:00 2001 From: eeichinger Date: Thu, 16 Apr 2009 23:12:27 +0000 Subject: [PATCH] fixed SPRNET-1118 + added sample "NestedEmployeeInfo" to WebQuickStart --- src/Spring/Spring.Web/Web/UI/Page.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Web/Web/UI/Page.cs b/src/Spring/Spring.Web/Web/UI/Page.cs index d4887ed1..c39449f8 100644 --- a/src/Spring/Spring.Web/Web/UI/Page.cs +++ b/src/Spring/Spring.Web/Web/UI/Page.cs @@ -1256,7 +1256,7 @@ namespace Spring.Web.UI { throw new ArgumentException( "Validator is not defined." ); } - result = validator.Validate( validationContext, contextParams, this.validationErrors ) && result; + result = validator.Validate( validationContext, contextParams, this.ValidationErrors ) && result; } return result;