From eab1e46a4b2b144970f7d2ae76385f0071b4ebed Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Fri, 15 Feb 2019 09:58:54 +0100 Subject: [PATCH] Bugfix in view after UmbracoContext refactoring --- src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Rte.cshtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Rte.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Rte.cshtml index 04123128c9..b7e293eed8 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Rte.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Rte.cshtml @@ -1,4 +1,5 @@ @model dynamic +@using Umbraco.Web.Composing @using Umbraco.Web.Templates -@Html.Raw(TemplateUtilities.ParseInternalLinks(Model.value.ToString(), UmbracoContext.Current.UrlProvider)) +@Html.Raw(TemplateUtilities.ParseInternalLinks(Model.value.ToString(), Current.UmbracoContext.UrlProvider))