Changed the MVC view class to expose the UmbracoHelper as just @Umbraco instead of @UmbracoHelper, this

follows the same naming conventions as MVC with HtmlHelper is exposed just as @Html, plus it is less to type
This commit is contained in:
Shannon Deminick
2012-09-20 12:47:37 +07:00
parent a48b996571
commit fd166389c4

View File

@@ -73,7 +73,7 @@ namespace Umbraco.Web.Mvc
/// <summary>
/// Gets an UmbracoHelper
/// </summary>
public UmbracoHelper UmbracoHelper
public UmbracoHelper Umbraco
{
get { return _helper ?? (_helper = new UmbracoHelper(UmbracoContext)); }
}