Skip to content

Commit

Permalink
Re-use the current transaction (Bug #12683).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Oct 14, 2013
1 parent 3dd26d6 commit 2dfc534
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions whups/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v3.0.0-git
----------

[jan] Fix empty notifications for assignees on ticket creation (Bug #12683).
[jan] Fix displaying of ticket tabs (Bug #12744).
[mjr] Fix sourceselect preference handling (Bug #12718).
[jan] Hide citings in comments by default.
Expand Down
3 changes: 2 additions & 1 deletion whups/lib/Driver/Sql.php
Expand Up @@ -343,7 +343,8 @@ public function addTicket(array &$info, $requester)
// Set timestamps, if necessary.
if ($state['category'] == 'assigned') {
$this->updateLog($ticket_id, $requester,
array('date_assigned' => $timestamp));
array('date_assigned' => $timestamp),
$transaction);
}

// Add any supplied attributes for this ticket.
Expand Down
2 changes: 2 additions & 0 deletions whups/package.xml
Expand Up @@ -28,6 +28,7 @@
</stability>
<license uri="http://www.horde.org/licenses/bsdl.php">BSD-2-Clause</license>
<notes>
* [jan] Fix empty notifications for assignees on ticket creation (Bug #12683).
* [jan] Fix displaying of ticket tabs (Bug #12744).
* [mjr] Fix sourceselect preference handling (Bug #12718).
* [jan] Hide citings in comments by default.
Expand Down Expand Up @@ -1052,6 +1053,7 @@
<date>2013-08-29</date>
<license uri="http://www.horde.org/licenses/bsdl.php">BSD-2-Clause</license>
<notes>
* [jan] Fix empty notifications for assignees on ticket creation (Bug #12683).
* [jan] Fix displaying of ticket tabs (Bug #12744).
* [mjr] Fix sourceselect preference handling (Bug #12718).
* [jan] Hide citings in comments by default.
Expand Down

0 comments on commit 2dfc534

Please sign in to comment.