mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Updated respondent selection screens (Thanks Alex)
Reverted changes to call.php as was not executing js properly Added custom outcome code changes (thanks Alex) Fixed error in CHANGELOG with AUTO_INCREMENT value
This commit is contained in:
@@ -1318,22 +1318,21 @@ function get_respondentselection_url($operator_id,$escape = true,$interface2 = f
|
||||
{
|
||||
$sid = get_limesurvey_id($operator_id,true); //true for RS
|
||||
if ($sid != false && !empty($sid) && $sid != 'NULL')
|
||||
{
|
||||
$url = LIME_URL . "index.php?interviewer=interviewer" . $amp . "loadall=reload" . $amp . "sid=$sid" . $amp . "token=$call_id" . $amp . "lang=" . DEFAULT_LOCALE;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (is_respondent_selection($operator_id) === false)
|
||||
{
|
||||
$url = get_limesurvey_url($operator_id);
|
||||
if (!$escape)
|
||||
$url = str_replace("&","&",$url);
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($interface2)
|
||||
$url = 'rs_intro_interface2.php';
|
||||
else
|
||||
$url = 'rs_intro.php';
|
||||
}
|
||||
{
|
||||
if (is_respondent_selection($operator_id) === false)
|
||||
{
|
||||
$url = get_limesurvey_url($operator_id);
|
||||
if (!$escape)
|
||||
$url = str_replace("&","&",$url);
|
||||
}
|
||||
else
|
||||
{
|
||||
$url = 'rs_intro.php';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user