fixes a null ref

This commit is contained in:
Shannon
2015-01-05 09:46:54 +11:00
parent 920084b7c3
commit b1fe15ed56

View File

@@ -43,7 +43,7 @@ namespace Umbraco.Web
/// </summary>
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)); }
}
/// <summary>