diff --git a/src/Orchard.Web/Core/Shapes/CoreShapes.cs b/src/Orchard.Web/Core/Shapes/CoreShapes.cs index f81be0d1c..361c0449e 100644 --- a/src/Orchard.Web/Core/Shapes/CoreShapes.cs +++ b/src/Orchard.Web/Core/Shapes/CoreShapes.cs @@ -618,7 +618,7 @@ namespace Orchard.Core.Shapes { IEnumerable classes = Shape.Classes; IDictionary attributes = Shape.Attributes; - attributes.Add("href", action); + attributes["href"] = action; string id = Shape.Id; var tag = GetTagBuilder("a", id, classes, attributes); tag.InnerHtml = EncodeOrDisplay(Value, Display, Html).ToString();