2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

fixed 'quotes' issue,

cosmetics to call_interface2.php
This commit is contained in:
Alex
2015-09-10 13:38:05 +03:00
parent c1e2b4d1f0
commit 83d3b8e2e3
3 changed files with 9 additions and 12 deletions

View File

@@ -116,7 +116,7 @@ function display_outcomes($contacted,$ca,$case_id)
$sql = "SELECT outcome_id,description
FROM outcome
WHERE outcome_type_id = '5'
AND outcome_id IN ('$outcomes')";
AND outcome_id IN ($outcomes)";
}
else
{
@@ -125,7 +125,7 @@ function display_outcomes($contacted,$ca,$case_id)
$sql = "SELECT outcome_id,description
FROM outcome
WHERE outcome_id != 10
AND outcome_id IN ('$outcomes')"; //don't show completed if not
AND outcome_id IN ($outcomes)"; //don't show completed if not
}
else
{
@@ -135,7 +135,7 @@ function display_outcomes($contacted,$ca,$case_id)
FROM outcome
WHERE contacted = '$contacted'
AND outcome_id != 10
AND outcome_id IN ('$outcomes')"; //don't show completed if not
AND outcome_id IN ($outcomes)"; //don't show completed if not
}
}