From 56e2a1e18a538f7c857a61431889af857d078644 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 19 Nov 2018 14:31:10 +1100 Subject: [PATCH] Added notification of updated case id --- admin/systemsortprocess.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 78edf98b..0a5e37b8 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -239,7 +239,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin //not already completed in queXS but is in Limesurvey //insert a case and call record $resp_id = 0; - $case_id = $rs[$l->token]['case_id']; + $case_id = $rs[$l->token]['case_id']; $sql = "SELECT respondent_id FROM respondent @@ -267,6 +267,8 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin WHERE case_id = $case_id"; $db->Execute($sql); + + print T_("Updating case as self completed online") . " - " . T_("Case id") . ": $case_id"; } } }