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:
6
call.php
6
call.php
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user