From b1fe15ed561f2b3cfa6975f5f1697a09b01617c5 Mon Sep 17 00:00:00 2001 From: Shannon Date: Mon, 5 Jan 2015 09:46:54 +1100 Subject: [PATCH] fixes a null ref --- src/Umbraco.Web/UmbracoHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/UmbracoHelper.cs b/src/Umbraco.Web/UmbracoHelper.cs index c1cdf7365f..a394007048 100644 --- a/src/Umbraco.Web/UmbracoHelper.cs +++ b/src/Umbraco.Web/UmbracoHelper.cs @@ -43,7 +43,7 @@ namespace Umbraco.Web /// public TagQuery TagQuery { - get { return _tag ?? (_tag = new TagQuery(UmbracoContext.Application.Services.TagService, _query)); } + get { return _tag ?? (_tag = new TagQuery(UmbracoContext.Application.Services.TagService, ContentQuery)); } } ///