From 9707a613030beddccdc3f2ed4bb5b7e0133faa3c Mon Sep 17 00:00:00 2001 From: hartvig Date: Sun, 27 Feb 2011 18:00:30 -0100 Subject: [PATCH] Work items: 30078 --- umbraco/cms/businesslogic/ContentType.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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. ///