Renames the PropertyValueEditor converter methods to be inline with the new converter method names

This commit is contained in:
Shannon
2013-10-08 10:58:47 +11:00
parent d0cd8ba346
commit 6cec665f7d
13 changed files with 44 additions and 36 deletions

View File

@@ -34,7 +34,7 @@ namespace Umbraco.Web.Models.Mapping
var result = new T
{
Id = property.Id,
Value = editor.ValueEditor.FormatDataForEditor(property.Value),
Value = editor.ValueEditor.ConvertDbToEditor(property.Value),
Alias = property.Alias
};