From 340f5382cce041d41cb8edda91f855d2f97d5abe Mon Sep 17 00:00:00 2001 From: hartvig Date: Tue, 24 Apr 2012 09:59:16 -0200 Subject: [PATCH] Work items: 30775 --- components/editorControls/KeyValuePrevalueEditor.cs | 2 +- components/editorControls/KeyValuePrevalueEditor.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/editorControls/KeyValuePrevalueEditor.cs b/components/editorControls/KeyValuePrevalueEditor.cs index 56517d58e3..4233f8aa6d 100644 --- a/components/editorControls/KeyValuePrevalueEditor.cs +++ b/components/editorControls/KeyValuePrevalueEditor.cs @@ -131,7 +131,7 @@ namespace umbraco.editorControls if (!string.IsNullOrEmpty(_tbhidden.Text)) { int so = 0; - foreach (string row in _tbhidden.Text.Split(';')) + foreach (string row in _tbhidden.Text.Split('¶')) { if (!string.IsNullOrEmpty(row)) { diff --git a/components/editorControls/KeyValuePrevalueEditor.js b/components/editorControls/KeyValuePrevalueEditor.js index f0ec731114..4d3f2a6622 100644 --- a/components/editorControls/KeyValuePrevalueEditor.js +++ b/components/editorControls/KeyValuePrevalueEditor.js @@ -28,7 +28,7 @@ function ResetValues() { var value = jQuery(".value", this).html(); - val += value + "|" + text + ";"; + val += value + "|" + text + "¶"; });