Merge branch '1.9.x' into dev

This commit is contained in:
Lombiq 2015-11-30 22:58:33 +01:00
commit 408534c915
3 changed files with 21 additions and 1 deletions

View File

@ -82,9 +82,10 @@ namespace Orchard.Blogs {
.WithPart("CommonPart") .WithPart("CommonPart")
.WithPart("WidgetPart") .WithPart("WidgetPart")
.WithSetting("Stereotype", "Widget") .WithSetting("Stereotype", "Widget")
.WithPart("IdentityPart")
); );
return 6; return 7;
} }
public int UpdateFrom1() { public int UpdateFrom1() {
@ -131,5 +132,14 @@ namespace Orchard.Blogs {
return 6; return 6;
} }
public int UpdateFrom6() {
ContentDefinitionManager.AlterTypeDefinition("BlogArchives",
cfg => cfg
.WithPart("IdentityPart")
);
return 7;
}
} }
} }

View File

@ -273,5 +273,14 @@ namespace Orchard.Projections {
return 3; return 3;
} }
public int UpdateFrom3() {
ContentDefinitionManager.AlterTypeDefinition("NavigationQueryMenuItem",
cfg => cfg
.WithPart("IdentityPart")
);
return 4;
}
} }
} }

View File

@ -57,6 +57,7 @@ namespace Orchard.Mvc {
var baseUrl = new Func<string>(() => siteService.GetSiteSettings().BaseUrl); var baseUrl = new Func<string>(() => siteService.GetSiteSettings().BaseUrl);
var httpContextBase = new HttpContextPlaceholder(baseUrl); var httpContextBase = new HttpContextPlaceholder(baseUrl);
context.Resolve<IWorkContextAccessor>().CreateWorkContextScope(httpContextBase);
return httpContextBase; return httpContextBase;
} }