From e49fe6ee17fcd63e815e2f9e9acdda07e28da7bd Mon Sep 17 00:00:00 2001 From: leekelleher Date: Mon, 14 Jul 2014 18:57:54 +0100 Subject: [PATCH] Fixed the type-name for the error log messages --- .../PropertyEditors/ArcheTypePropertyEditor.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs b/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs index 0f7f840..07c23e8 100644 --- a/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs +++ b/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs @@ -14,7 +14,7 @@ using Umbraco.Web.PropertyEditors; namespace Archetype.PropertyEditors { [PropertyEditorAsset(ClientDependencyType.Javascript, "/App_Plugins/Archetype/js/archetype.js")] - [PropertyEditor("Imulus.Archetype", "Archetype", "/App_Plugins/Archetype/views/archetype.html", ValueType = "JSON")] + [PropertyEditor(Constants.PropertyEditorAlias, "Archetype", "/App_Plugins/Archetype/views/archetype.html", ValueType = "JSON")] public class ArchetypePropertyEditor : PropertyEditor { #region Pre Value Editor @@ -74,7 +74,7 @@ namespace Archetype.PropertyEditors } catch (Exception ex) { - LogHelper.Error(ex.Message, ex); + LogHelper.Error(ex.Message, ex); } } } @@ -105,7 +105,7 @@ namespace Archetype.PropertyEditors } catch (Exception ex) { - LogHelper.Error(ex.Message, ex); + LogHelper.Error(ex.Message, ex); } } } @@ -135,7 +135,7 @@ namespace Archetype.PropertyEditors } catch (Exception ex) { - LogHelper.Error(ex.Message, ex); + LogHelper.Error(ex.Message, ex); } } }