Can't change the web.config for a 4.7.x release, redid implementation to not require web.config change

This commit is contained in:
agrath@gmail.com
2011-05-21 14:47:57 -12:00
parent 6a0dfc2c11
commit cd13f8de55
6 changed files with 23 additions and 49 deletions

View File

@@ -2,6 +2,7 @@
using System.Web.WebPages;
using umbraco.cms.businesslogic.macro;
using umbraco.interfaces;
using umbraco.MacroEngines.Library;
namespace umbraco.MacroEngines
{
@@ -57,11 +58,11 @@ namespace umbraco.MacroEngines
return CultureDictionary[key];
}
public IRazorLibrary Library
public RazorLibraryCore Library
{
get
{
return new RazorLibraryImpl(_node);
return new RazorLibraryCore(this._node);
}
}