From 320df6706e72c66f6367da7b8043d2b118160aca Mon Sep 17 00:00:00 2001 From: leekelleher Date: Sun, 8 Jun 2014 16:15:28 +0100 Subject: [PATCH] Modified content tree controller to point the recycle bin node to the dashboard. --- src/Umbraco.Web/Trees/ContentTreeControllerBase.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Umbraco.Web/Trees/ContentTreeControllerBase.cs b/src/Umbraco.Web/Trees/ContentTreeControllerBase.cs index 69cef03ab4..ce52b3599a 100644 --- a/src/Umbraco.Web/Trees/ContentTreeControllerBase.cs +++ b/src/Umbraco.Web/Trees/ContentTreeControllerBase.cs @@ -155,10 +155,7 @@ namespace Umbraco.Web.Trees ui.GetText("general", "recycleBin"), "icon-trash", RecycleBinSmells, - //TODO: This would be nice to enable so we can have a nice recyclebin view, see the NOTE: in the routes.js angular file - // for the time being we'll just load the dashboard of the section. - //queryStrings.GetValue("application") + TreeAlias.EnsureStartsWith('/') + "/recyclebin")); - queryStrings.GetValue("application"))); + queryStrings.GetValue("application") + TreeAlias.EnsureStartsWith('/') + "/recyclebin")); }