Hm, this wasn't validating the values inside objects. Fixed.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4942 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-02-21 02:28:59 +00:00
parent 6dee96bb15
commit 5cbc654b13
@@ -161,7 +161,7 @@ public class ObjectMarshaller
}
// check sub-properties (of arrays and objects)
for each (var arrValue :Object in (value as Array)) {
for each (var arrValue :Object in value) {
var s :String = getValidationError(arrValue);
if (s != null) {
return s;