From 34ae25431936650374222f141074ea427eebdef4 Mon Sep 17 00:00:00 2001 From: Rich Date: Thu, 3 Jul 2014 02:46:02 +0000 Subject: [PATCH] Added code to assure length of OldStepSequence does not exceed 32 characters --- PROMS/VEPROMS.CSLA.Library/Generated/ZContent.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/VEPROMS.CSLA.Library/Generated/ZContent.cs b/PROMS/VEPROMS.CSLA.Library/Generated/ZContent.cs index f9123c69..e66f831b 100644 --- a/PROMS/VEPROMS.CSLA.Library/Generated/ZContent.cs +++ b/PROMS/VEPROMS.CSLA.Library/Generated/ZContent.cs @@ -135,6 +135,8 @@ namespace VEPROMS.CSLA.Library if (_OldStepSequence != value) { _OldStepSequence = value; + if (_OldStepSequence.Length > 32) + _OldStepSequence = _OldStepSequence.Substring(0, 32); PropertyHasChanged(); } }