diff --git a/Help Desk/CHANGELOG.txt b/Help Desk/CHANGELOG.txt index a08eb4f..a59bc14 100644 --- a/Help Desk/CHANGELOG.txt +++ b/Help Desk/CHANGELOG.txt @@ -1,5 +1,8 @@ CHANGELOG ========= +v1.4.11 +------- +Fixed issues_assignProcess where a bracket was missing v1.4.10 ------- @@ -312,4 +315,4 @@ Updated issues_technicianDeleteProcess.php so it deletes all related data in the v0.0.01 ------- -First Release. \ No newline at end of file +First Release. diff --git a/Help Desk/issues_assignProcess.php b/Help Desk/issues_assignProcess.php index 0cf2142..3ab0c0f 100644 --- a/Help Desk/issues_assignProcess.php +++ b/Help Desk/issues_assignProcess.php @@ -89,7 +89,7 @@ throw new PDOException('Invalid gibbonModuleID.'); } - if (!$issueGateway->update($issueID, ['technicianID' => $technicianID, 'status' => 'Pending']) { + if (!$issueGateway->update($issueID, ['technicianID' => $technicianID, 'status' => 'Pending'])) { throw new PDOException('Could not update issue.'); } } catch (PDOException $e) { diff --git a/Help Desk/manifest.php b/Help Desk/manifest.php index 5d5e725..41a8edd 100644 --- a/Help Desk/manifest.php +++ b/Help Desk/manifest.php @@ -23,7 +23,7 @@ $entryURL="issues_view.php"; $type="Additional"; $category="Other"; -$version="1.4.10"; +$version="1.4.11"; $author="Ray Clark, Ashton Power & Adrien Tremblay"; $url="https://github.com/GibbonEdu/module-helpDesk"; diff --git a/Help Desk/version.php b/Help Desk/version.php index a6b842a..67b5623 100644 --- a/Help Desk/version.php +++ b/Help Desk/version.php @@ -20,6 +20,6 @@ /** * Sets version information */ -$moduleVersion='1.4.10'; +$moduleVersion='1.4.11'; ?>