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

merged rs_intro.php and rs_intro_interface2.php;

removed references to rs_intro_interface2.php;
 removed rs_intro_interface2.php;
 bootstrapified rs_intro.php
This commit is contained in:
Alex
2015-12-07 00:48:24 +03:00
parent 273fb168b6
commit 0fea57f29a
7 changed files with 116 additions and 259 deletions

View File

@@ -1307,20 +1307,12 @@ function get_respondentselection_url($operator_id,$escape = true,$interface2 = f
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)
{
if (!$escape) $url = str_replace("&","&",$url); else $url = get_limesurvey_url($operator_id);
}
else $url = 'rs_intro.php';
}
}