Skip to content

Commit

Permalink
Fixed issue with wrong task guid
Browse files Browse the repository at this point in the history
fixes #126
  • Loading branch information
tomolimo committed Jun 21, 2021
1 parent 4e0250b commit 6ac90bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inc/processmaker.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3467,7 +3467,7 @@ public function getGLPIGroupIdForSelfServiceTask ($caseId, $pmTaskId) {
// AND TAS_ASSIGN_TYPE='SELF_SERVICE';";
$query = ['SELECT' => 'TAS_GROUP_VARIABLE',
'FROM' => 'TASK',
'WHERE' => ['TAS_UID' => '$pmTaskId',
'WHERE' => ['TAS_UID' => $pmTaskId,
'TAS_ASSIGN_TYPE' => 'SELF_SERVICE']];
//$req = $PM_DB->query($query);
//$row = $PM_DB->fetchAssoc($req);
Expand Down
2 changes: 1 addition & 1 deletion processmaker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<compatibility>9.4</compatibility>
</version>
<version>
<num>4.0.3</num>
<num>4.0.4</num>
<compatibility>9.5</compatibility>
</version>
</versions>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define('PROCESSMAKER_VERSION', '4.0.3');
define('PROCESSMAKER_VERSION', '4.0.4');

// used for case cancellation
define("CANCEL", 256);
Expand Down

0 comments on commit 6ac90bf

Please sign in to comment.