diff --git a/umbraco/presentation/macro.cs b/umbraco/presentation/macro.cs index 0e411e9dc3..e605dfa069 100644 --- a/umbraco/presentation/macro.cs +++ b/umbraco/presentation/macro.cs @@ -497,7 +497,13 @@ namespace umbraco foreach (MacroPropertyModel mp in Model.Properties) { if (attributes.ContainsKey(mp.Key.ToLower())) + { mp.Value = attributes[mp.Key.ToLower()].ToString(); + } + else + { + mp.Value = string.Empty; + } } }