Merged in bugfix/HOR-4715 (pull request #6546)

HOR-4715

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Paula Quispe
2018-07-10 12:46:07 +00:00
committed by Julio Cesar Laura Avendaño

View File

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