This commit is contained in:
@@ -296,7 +296,8 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
int ptr = str.IndexOf('<'); //nextDelimiter("<", str, l);
|
||||
int cptr = (ptr == -1) ? -1 : str.IndexOf('>'); //nextDelimiter(">", ptr, strlen(ptr));
|
||||
if (ptr == -1 || (ptr > -1 && cptr == -1))
|
||||
// jsj 2/5/10 added "|| (ptr > cptr)" to fix bug where rawvalue = "Insert token for ->Step<- to transition back to."
|
||||
if (ptr == -1 || (ptr > -1 && ((cptr == -1) || (ptr > cptr))))
|
||||
{
|
||||
//add(new seText(str, l));
|
||||
//str += l;
|
||||
|
Reference in New Issue
Block a user