From e4f8b5c58638992027f2fbf641a4ea65023181ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Reinke=40Windows-7?= Date: Tue, 6 Nov 2012 19:21:41 -0100 Subject: [PATCH] Deleting a Tab now removes it from the list in the browser --- src/umbraco.cms/businesslogic/ContentType.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/umbraco.cms/businesslogic/ContentType.cs b/src/umbraco.cms/businesslogic/ContentType.cs index befaa03556..2154ec0118 100644 --- a/src/umbraco.cms/businesslogic/ContentType.cs +++ b/src/umbraco.cms/businesslogic/ContentType.cs @@ -794,6 +794,7 @@ namespace umbraco.cms.businesslogic SqlHelper.ExecuteNonQuery("delete from cmsTab where id =" + id); + InitializeVirtualTabs(); // Remove from cache FlushFromCache(Id); }