From 6e1316cb95afeb6be19be7852b895e1638357c92 Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Fri, 1 Feb 2013 19:41:23 +0600 Subject: [PATCH] Fixes up some merge issues. --- src/Umbraco.Web.UI/Umbraco.Web.UI.csproj | 45 +++++++++---------- src/Umbraco.Web.UI/packages.config | 2 +- src/Umbraco.Web/Umbraco.Web.csproj | 2 +- src/Umbraco.Web/packages.config | 2 +- src/umbraco.cms/businesslogic/web/Document.cs | 11 ----- 5 files changed, 25 insertions(+), 37 deletions(-) diff --git a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj index d8f16edbd6..d1e477624e 100644 --- a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj +++ b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj @@ -121,17 +121,14 @@ False ..\packages\MySql.Data.6.6.4\lib\net40\MySql.Data.dll - - False - ..\packages\uGoLive.1.3.0\lib\Our.Umbraco.uGoLive.dll + + ..\packages\uGoLive.1.4.0\lib\Our.Umbraco.uGoLive.dll - - False - ..\packages\uGoLive.1.3.0\lib\Our.Umbraco.uGoLive.47x.dll + + ..\packages\uGoLive.1.4.0\lib\Our.Umbraco.uGoLive.47x.dll - - False - ..\packages\uGoLive.1.3.0\lib\Our.Umbraco.uGoLive.Checks.dll + + ..\packages\uGoLive.1.4.0\lib\Our.Umbraco.uGoLive.Checks.dll System @@ -1834,23 +1831,23 @@ applications.config Designer - + Code - - - - - - - - - - + + + + + + + + + + Code - - + + @@ -1860,7 +1857,9 @@ - + + Designer + Web.Template.config Designer diff --git a/src/Umbraco.Web.UI/packages.config b/src/Umbraco.Web.UI/packages.config index 599bc4bf22..d03d68a4c5 100644 --- a/src/Umbraco.Web.UI/packages.config +++ b/src/Umbraco.Web.UI/packages.config @@ -11,6 +11,6 @@ - + \ No newline at end of file diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj index fee460bb76..fab5647622 100644 --- a/src/Umbraco.Web/Umbraco.Web.csproj +++ b/src/Umbraco.Web/Umbraco.Web.csproj @@ -124,7 +124,7 @@ True ..\packages\CodeSharp.Package.AspNetWebPage.1.0\lib\net40\NuGet.Core.dll - + ..\packages\uGoLive.1.4.0\lib\Our.Umbraco.uGoLive.dll diff --git a/src/Umbraco.Web/packages.config b/src/Umbraco.Web/packages.config index eaacf49624..41edbfed34 100644 --- a/src/Umbraco.Web/packages.config +++ b/src/Umbraco.Web/packages.config @@ -11,7 +11,7 @@ - + diff --git a/src/umbraco.cms/businesslogic/web/Document.cs b/src/umbraco.cms/businesslogic/web/Document.cs index eee60b3a1a..c80264b0df 100644 --- a/src/umbraco.cms/businesslogic/web/Document.cs +++ b/src/umbraco.cms/businesslogic/web/Document.cs @@ -1044,17 +1044,6 @@ namespace umbraco.cms.businesslogic.web // Make the new document var content = ApplicationContext.Current.Services.ContentService.Copy(Content, CopyTo, RelateToOrignal, u.Id); newDoc = new Document(content); - IDataType tagsField = new Factory().GetNewObject(new Guid("4023e540-92f5-11dd-ad8b-0800200c9a66")); - } - else if (p.PropertyType.DataTypeDefinition.DataType.Id == tagsField.Id && - p.Value.ToString() != "") - { - //Find tags from the original and add them to the new document - var tags = Tags.Tag.GetTags(this.Id); - foreach (var tag in tags) - { - Tags.Tag.AddTagsToNode(newDoc.Id, tag.TagCaption, tag.Group); - } // Have to run the ActionNew handler to do umbEnsureUniqueName (for example) BusinessLogic.Actions.Action.RunActionHandlers(newDoc, ActionNew.Instance);