Skip to content

Commit

Permalink
Fix #590
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Nov 30, 2020
1 parent 4161c04 commit 0ffcee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cairis/sql/procs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13784,7 +13784,7 @@ begin
leave ucEnv_loop;
end if;
select preconditions into ucPreCond from usecase_conditions where usecase_id = ucId and environment_id = envId;
set buf = concat(buf,' <usecase_environment name=\"',envName,'\" >\n <preconditions>',ucPreCond,'</preconditions>\n <flow>\n');
set buf = concat(buf,' <usecase_environment name=\"',envName,'\" >\n <preconditions>',xmlEscaped(ucPreCond),'</preconditions>\n <flow>\n');

open ucStepCursor;
ucStep_loop: loop
Expand Down Expand Up @@ -13827,7 +13827,7 @@ begin

set buf = concat(buf,' </flow>\n');
select postconditions into ucPostCond from usecase_conditions where usecase_id = ucId and environment_id = envId;
set buf = concat(buf,' <postconditions>',ucPostCond,'</postconditions>\n');
set buf = concat(buf,' <postconditions>',xmlEscaped(ucPostCond),'</postconditions>\n');
set buf = concat(buf,' </usecase_environment>\n');
end loop ucEnv_loop;
close ucEnvCursor;
Expand Down

0 comments on commit 0ffcee7

Please sign in to comment.