From fcfd21178822b7ae98568f4c81fc8047c8153144 Mon Sep 17 00:00:00 2001 From: Jamie Pratt Date: Tue, 13 Jul 2010 06:59:10 +0000 Subject: [PATCH] MDL-20808 "Create AMF test client" Some updates to client --- webservice/amf/testclient/customValidators/JSONValidator.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/amf/testclient/customValidators/JSONValidator.as b/webservice/amf/testclient/customValidators/JSONValidator.as index 39d4982766b..56186763489 100644 --- a/webservice/amf/testclient/customValidators/JSONValidator.as +++ b/webservice/amf/testclient/customValidators/JSONValidator.as @@ -31,7 +31,7 @@ package customValidators } if (this.required && JSONstring == ''){ errors.push(new ValidationResult(true, null, "Required", - "You must enter a value for this argument.")); + "You must enter a value for this argument - for a string argument an empty string can be entered as \"\" or you can disable an optional argument.")); } return errors; }