Fixed logic in vefn_GetROTokens to find RO Tokens for testing.
This commit is contained in:
parent
500c5d224c
commit
15e33d2320
@ -7201,7 +7201,7 @@ WHILE (LEN(@text) > 0)
|
|||||||
BEGIN
|
BEGIN
|
||||||
INSERT INTO @Tokens VALUES (substring(@text, @index,@index2-@index))
|
INSERT INTO @Tokens VALUES (substring(@text, @index,@index2-@index))
|
||||||
if(len(@text) > @index2)
|
if(len(@text) > @index2)
|
||||||
SET @text = RIGHT(@text, (LEN(@text) - @index2))
|
SET @text = substring(@text, @index2 , len(@text))
|
||||||
else
|
else
|
||||||
SET @Text = ''
|
SET @Text = ''
|
||||||
END
|
END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user