Fixed content title saving

This commit is contained in:
Shannon
2013-06-11 15:04:23 +02:00
parent c055dedee9
commit 5dee0208f5
3 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -78,3 +78,4 @@ src/Umbraco.Web.UI/umbraco/assets/*
src/Umbraco.Web.UI.Client/build/*
src/Umbraco.Web.UI.Client/build/*
src/Umbraco.Web.UI.Client/build/belle/
src/Umbraco.Web.UI/UserControls/

View File

@@ -56,7 +56,6 @@ function contentResource($q, $http, umbDataFormatter, umbRequestHelper) {
},
getByIds: function (ids) {
var deferred = $q.defer();
//go and get the data

View File

@@ -117,6 +117,9 @@ namespace Umbraco.Web.Editors
//Now, we just need to save the data
contentItem.PersistedContent.Name = contentItem.Name;
//TODO: We'll need to save the new template, publishat, etc... values here
//Save the property values
foreach (var p in contentItem.ContentDto.Properties)
{