mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Fixing a (harmless) bug in Projections/LayoutController. (Harmless thanks to implicit route values, but better to be explicit).
--HG-- branch : 1.x
This commit is contained in:
@@ -216,7 +216,7 @@ namespace Orchard.Projections.Controllers {
|
||||
|
||||
Services.Notifier.Information(T("Layout Saved"));
|
||||
|
||||
return RedirectToAction("Edit", layoutRecord.Id);
|
||||
return RedirectToAction("Edit", new { id = layoutRecord.Id });
|
||||
}
|
||||
|
||||
#region Load Fields
|
||||
|
Reference in New Issue
Block a user