Appends comment and forum reference to developer comment for reference when evaluating code removal.

This commit is contained in:
rs@merchello.com
2016-05-02 13:17:13 -07:00
parent 2a87c926f3
commit 029e50dd3c

View File

@@ -35,6 +35,9 @@ namespace Umbraco.Core.PropertyEditors.ValueConverters
// as xml in the database, it's always been new line delimited. Will ask Stephen about this.
// In the meantime, we'll do this xml check, see if it parses and if not just continue with
// splitting by newline
//
// RS: SD/Stephan Please consider post before deciding to remove
//// https://our.umbraco.org/forum/contributing-to-umbraco-cms/76989-keep-the-xml-values-in-the-multipletextstringvalueconverter
var values = new List<string>();
var pos = sourceString.IndexOf("<value>", StringComparison.Ordinal);
while (pos >= 0)