From e9e598d32c41475859032c39d828849dc85e4934 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Fri, 24 Aug 2012 13:14:52 -0100 Subject: [PATCH] Corrected typo (macro/xsltExtensions) --- src/Umbraco.Web/umbraco.presentation/macro.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web/umbraco.presentation/macro.cs b/src/Umbraco.Web/umbraco.presentation/macro.cs index acad28285a..10877e3de8 100644 --- a/src/Umbraco.Web/umbraco.presentation/macro.cs +++ b/src/Umbraco.Web/umbraco.presentation/macro.cs @@ -820,7 +820,7 @@ namespace umbraco { throw new Exception( String.Format( - "Could not load assembly {0} for XSLT extension {1}. Please check config/xsltExentions.config.", + "Could not load assembly {0} for XSLT extension {1}. Please check config/xsltExtensions.config.", extensionFile, xsltEx.Attributes["alias"].Value), ex); } @@ -829,7 +829,7 @@ namespace umbraco if (extensionType == null) throw new Exception( String.Format( - "Could not load type {0} ({1}) for XSLT extension {1}. Please check config/xsltExentions.config.", + "Could not load type {0} ({1}) for XSLT extension {1}. Please check config/xsltExtensions.config.", xsltEx.Attributes["type"].Value, extensionFile, xsltEx.Attributes["alias"].Value)); // create an instance and add it to the extensions list @@ -867,6 +867,7 @@ namespace umbraco { m_PredefinedExtensions = new Dictionary(); + // [LK] U4-86 Move EXSLT references from being predefined in core to xsltExtensions.config //// add predefined EXSLT extensions //m_PredefinedExtensions.Add("Exslt.ExsltCommon", new ExsltCommon()); //m_PredefinedExtensions.Add("Exslt.ExsltDatesAndTimes", new ExsltDatesAndTimes());