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

Make sure interviewer flag is set for admin operators

This commit is contained in:
Adam Zammit
2017-07-05 10:00:54 +10:00
parent 4fe2c367c1
commit d50218988a
6 changed files with 12 additions and 12 deletions

View File

@@ -266,7 +266,7 @@ if ($questionnaire_id)
$completions = $rs['count'];
$perc = ROUND(($completions / $r['qlimit']) * 100,2);
$report[] = array("strata" => "<a href='" . LIME_URL . "/admin/admin.php?action=quotas&sid={$r['sid']}&quota_id={$r['id']}&subaction=quota_editquota'>" . $r['name'] . "</a>", "quota" => $r['qlimit'], "completions" => $completions, "perc" => $perc);
$report[] = array("strata" => "<a href='" . LIME_URL . "/admin/admin.php?interviewer=1&action=quotas&sid={$r['sid']}&quota_id={$r['id']}&subaction=quota_editquota'>" . $r['name'] . "</a>", "quota" => $r['qlimit'], "completions" => $completions, "perc" => $perc);
}
}