diff --git a/src/Umbraco.Web/UmbracoHelper.cs b/src/Umbraco.Web/UmbracoHelper.cs
index 2c7cafb298..46ae098e2e 100644
--- a/src/Umbraco.Web/UmbracoHelper.cs
+++ b/src/Umbraco.Web/UmbracoHelper.cs
@@ -492,6 +492,18 @@ namespace Umbraco.Web
return Url(nodeId);
}
+ ///
+ /// Returns a string with a friendly url from a node.
+ /// IE.: Instead of having /482 (id) as an url, you can have
+ /// /screenshots/developer/macros (spoken url)
+ ///
+ /// Identifier for the node that should be returned
+ /// String with a friendly url from a node
+ public string NiceUrl(Guid guid)
+ {
+ return Url(guid);
+ }
+
///
/// Gets the url of a content identified by its identifier.
///