Change back to using CurrentPage.Site() when queuing with the Query Builder, as Model.Content.Site(), doesnt support the queries the Query Builder creates

This commit is contained in:
mikkelhm
2016-12-28 14:04:40 +01:00
parent d835008c67
commit dea3553885

View File

@@ -65,7 +65,7 @@ namespace Umbraco.Web.Editors
var sb = new StringBuilder();
sb.Append("Model.Content.Site()");
sb.Append("CurrentPage.Site()");
var timer = new Stopwatch();