diff --git a/umbraco/presentation/macro.cs b/umbraco/presentation/macro.cs index 3c714a13be..73b89e7247 100644 --- a/umbraco/presentation/macro.cs +++ b/umbraco/presentation/macro.cs @@ -487,6 +487,11 @@ namespace umbraco TimeSpan.Zero, CacheItemPriority.Low, null); + + // zb-00003 #29470 : replace by text if not already text + // otherwise it is rendered twice + if (!(macroControl is LiteralControl)) + macroControl = new LiteralControl(sw.ToString()); } } }