Merge remote-tracking branch 'origin/6.2.0' into 7.1.0

This commit is contained in:
Shannon
2014-03-11 17:27:30 +11:00
3 changed files with 97 additions and 78 deletions

View File

@@ -332,7 +332,7 @@ namespace Umbraco.Web.Models
var attempt = content.GetType().GetMemberIgnoreCase(content, alias);
return !attempt.Success
return attempt.Success == false || attempt.Result == null
? null
: new PropertyResult(alias, attempt.Result, PropertyResultType.ReflectedProperty);
}