diff --git a/umbraco/cms/businesslogic/ContentType.cs b/umbraco/cms/businesslogic/ContentType.cs index 5980174a96..75c762ff01 100644 --- a/umbraco/cms/businesslogic/ContentType.cs +++ b/umbraco/cms/businesslogic/ContentType.cs @@ -1153,6 +1153,17 @@ namespace umbraco.cms.businesslogic return tmp; } + /// + /// A list of PropertyTypes on the Tab + /// + [Obsolete("Please use GetPropertyTypes() instead", false)] + public PropertyType[] PropertyTypes + { + get { return GetPropertyTypes(this.ContentType, true); } + } + + + /// /// Flushes the cache. ///