diff --git a/src/Umbraco.Core/Persistence/Repositories/Implement/ContentTypeRepositoryBase.cs b/src/Umbraco.Core/Persistence/Repositories/Implement/ContentTypeRepositoryBase.cs
index 7104c9f713..d1737d495a 100644
--- a/src/Umbraco.Core/Persistence/Repositories/Implement/ContentTypeRepositoryBase.cs
+++ b/src/Umbraco.Core/Persistence/Repositories/Implement/ContentTypeRepositoryBase.cs
@@ -412,6 +412,7 @@ AND umbracoNode.id <> @id",
//we've already looked up the previous version of the content type so we know it's previous variation state
MoveVariantData(entity, (ContentVariation)dtoPk.Variations, entity.Variations);
Clear301Redirects(entity);
+ ClearScheduledPublishing(entity);
}
//track any property types that are changing variation
@@ -513,6 +514,14 @@ AND umbracoNode.id <> @id",
Database.Execute(sqlDelete);
}
+ ///
+ /// Clear any scheduled publishing associated with content for a content type
+ ///
+ private void ClearScheduledPublishing(IContentTypeComposition contentType)
+ {
+ //TODO: Fill this in when scheduled publishing is enabled for variants
+ }
+
///
/// Moves variant data for property type changes
///