Hi,
I just upgraded to 9.4.14 in a DEV solution and i get some weird razor behaviour...
Consider this code:
foreach (LoopItem item in GetLoop("Item.Something")) { <a href="@item.GetString("Item.Something.URL")" title="@item.GetString("Item.Something.Text")">@item.GetString("Item.Something.Text")</a> }
This gives me this output:
<a href=""="" title=""="">The expected text</a>
Ealier there was some issues when using @GetString etc. inside double quotes where I used single quotes, but I haven't seen this behaviour for years...
Anyone else getting this behaviour?