From 60e2116d0d2c8c30be5319968ef5d2f17f41790e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 30 Oct 2013 18:18:33 +0000 Subject: [PATCH] Added logic to process a forward slash in 16-bit data being converted for PROMS --- PROMS/DataLoader/PrivateProfile.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/DataLoader/PrivateProfile.cs b/PROMS/DataLoader/PrivateProfile.cs index fd92e5a6..14c090a0 100644 --- a/PROMS/DataLoader/PrivateProfile.cs +++ b/PROMS/DataLoader/PrivateProfile.cs @@ -58,6 +58,8 @@ namespace Config sValue = sValue.Trim(' '); sName = sName.Replace(' ', '_'); sName = sName.Replace("\\", "_slash_"); + sName = sName.Replace("/", "_fslash_"); + if (xParent.Name == "color") { string[] parts = sValue.Split(",".ToCharArray());