Removing the camel case enforcement on the Alias of ContentTypes and MediaTypes in the new api.

This commit is contained in:
Morten Christensen
2012-12-29 11:12:29 -01:00
parent 56e2a89199
commit 3955f78966

View File

@@ -149,7 +149,7 @@ namespace Umbraco.Core.Models
get { return _alias; }
set
{
_alias = value.ToUmbracoAlias(StringAliasCaseType.CamelCase, true);
_alias = value;
OnPropertyChanged(AliasSelector);
}
}