Changed a parameter name

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-08-04 13:33:44 -07:00
parent b2fbce9c54
commit 6dcb3ee69a

View File

@@ -6,8 +6,8 @@ namespace Orchard.Core.Contents.Extensions {
public static ContentTypeDefinitionBuilder Creatable(this ContentTypeDefinitionBuilder builder, bool creatable = true) {
return builder.WithSetting("ContentTypeSettings.Creatable", creatable.ToString());
}
public static ContentPartDefinitionBuilder Attachable(this ContentPartDefinitionBuilder builder, bool creatable = true) {
return builder.WithSetting("ContentPartSettings.Attachable", creatable.ToString());
public static ContentPartDefinitionBuilder Attachable(this ContentPartDefinitionBuilder builder, bool attachable = true) {
return builder.WithSetting("ContentPartSettings.Attachable", attachable.ToString());
}
}
}