Skip to content

Commit

Permalink
Merge pull request #73 from GibbonEdu/v1.4.00
Browse files Browse the repository at this point in the history
V1.4.11
  • Loading branch information
powertashton authored Feb 23, 2021
2 parents f62427f + 273e039 commit aadcfb3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Help Desk/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGELOG
=========
v1.4.11
-------
Fixed issues_assignProcess where a bracket was missing

v1.4.10
-------
Expand Down Expand Up @@ -312,4 +315,4 @@ Updated issues_technicianDeleteProcess.php so it deletes all related data in the

v0.0.01
-------
First Release.
First Release.
2 changes: 1 addition & 1 deletion Help Desk/issues_assignProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion Help Desk/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion Help Desk/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
/**
* Sets version information
*/
$moduleVersion='1.4.10';
$moduleVersion='1.4.11';

?>

0 comments on commit aadcfb3

Please sign in to comment.