Compare commits
No commits in common. "473a1709830c4bb36640530bfcaef5c38e199915" and "87c4d13abe1688cbad0470c70589ced808a1714c" have entirely different histories.
473a170983
...
87c4d13abe
@ -711,11 +711,6 @@ namespace VEPROMS.CSLA.Library
|
||||
else
|
||||
newvalue = newvalue.Replace(@"\u9586?", m.Groups[1].Value + @"\u9586?" + m.Groups[3].Value);
|
||||
}
|
||||
// B2022-134: crash when updating an RO that contains '<' or '>' when RO is used in a table cell. These
|
||||
// are xml special characters, the grid is stored as xml, so these characters need translated so that
|
||||
// storing them as xml in the database won't crash. They get translated back when used in Proms.
|
||||
if (newvalue.Contains("<")) newvalue = newvalue.Replace("<", "<");
|
||||
if (newvalue.Contains(">")) newvalue = newvalue.Replace(">", ">");
|
||||
if (gg != newvalue)
|
||||
{
|
||||
retval = gg;
|
||||
|
Loading…
x
Reference in New Issue
Block a user