This commit is contained in:
Paula Quispe
2018-07-09 11:22:39 -04:00
parent 85eadedc33
commit 82411a7b96

View File

@@ -36,6 +36,9 @@ if (isset($_REQUEST['action']) && $_REQUEST['action'] == "verifySession") {
$tasUid = isset($_SESSION['TASK']) ? $_SESSION['TASK'] : ''; $tasUid = isset($_SESSION['TASK']) ? $_SESSION['TASK'] : '';
$response = new stdclass(); $response = new stdclass();
$response->reassigncase = false;
$response->message = G::LoadTranslation('ID_NOT_ABLE_REASSIGN');
$userAuthorization = []; $userAuthorization = [];
if (!empty($proUid) && !empty($appUid)) { if (!empty($proUid) && !empty($appUid)) {
$cases = new BmCases(); $cases = new BmCases();
@@ -58,8 +61,6 @@ if (isset($_REQUEST['action']) && $_REQUEST['action'] == "verifySession") {
$response->message = ''; $response->message = '';
} }
} }
$response->reassigncase = false;
$response->message = G::LoadTranslation('ID_NOT_ABLE_REASSIGN');
print G::json_encode($response); print G::json_encode($response);
die(); die();