From b43d60c054f889d3d3931db81ec9744b5a05001a Mon Sep 17 00:00:00 2001 From: Shandem Date: Thu, 15 Apr 2010 13:28:45 +0000 Subject: [PATCH] Fixes 26781 - tree cache issue [TFS Changeset #65498] --- umbraco.sln | 1 - umbraco/presentation/config/ClientDependency.config | 2 +- umbraco/presentation/umbraco_client/Tree/UmbracoTree.js | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/umbraco.sln b/umbraco.sln index e945bd8b3b..89e67803e8 100644 --- a/umbraco.sln +++ b/umbraco.sln @@ -93,7 +93,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DLLs", "DLLs", "{F06D18F6-C foreign dlls\Microsoft.Scripting.ExtensionAttribute.dll = foreign dlls\Microsoft.Scripting.ExtensionAttribute.dll foreign dlls\MySql.Data.dll = foreign dlls\MySql.Data.dll foreign dlls\TidyNet.dll = foreign dlls\TidyNet.dll - foreign dlls\UmbracoExamine.dll = foreign dlls\UmbracoExamine.dll foreign dlls\UrlRewritingNet.UrlRewriter.dll = foreign dlls\UrlRewritingNet.UrlRewriter.dll foreign dlls\VistaDB For Umbraco.dll = foreign dlls\VistaDB For Umbraco.dll foreign dlls\VistaDB.NET20.dll = foreign dlls\VistaDB.NET20.dll diff --git a/umbraco/presentation/config/ClientDependency.config b/umbraco/presentation/config/ClientDependency.config index 5a54512555..f8f27dd95d 100644 --- a/umbraco/presentation/config/ClientDependency.config +++ b/umbraco/presentation/config/ClientDependency.config @@ -10,7 +10,7 @@ NOTES: * Compression/Combination/Minification is not enabled unless debug="false" is specified on the 'compiliation' element in the web.config * A new version will invalidate both client and server cache and create new persisted files --> - + diff --git a/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js b/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js index 72081558ee..71a9292a8a 100644 --- a/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js +++ b/umbraco/presentation/umbraco_client/Tree/UmbracoTree.js @@ -129,7 +129,7 @@ Umbraco.Sys.registerNamespace("Umbraco.Controls"); // This will remove all stored trees in client side cache so that the next time a tree needs loading it will be refreshed this._debug("clearTreeCache..."); - this._loadedApps = {}; + this._loadedApps = []; }, toggleEditMode: function(enable) {