Skip to content
Snippets Groups Projects
Commit 12e1e536 authored by Tim Steiner's avatar Tim Steiner
Browse files

Typo in Requests_ApprovalActionVoteModel

parent 803177e8
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ class Requests_ApprovalActionVoteModel extends Requests_ApprovalActionQueueModel
$select = new Zend_Db_Select($db);
$select->from(array('a' => 'creqApprovalActions'));
$select->join(array('q' => 'creqApprovalActionsQueue'), 'a.approvalActionId = q.approvalActionId');
$select->join(array('q' => 'creqApprovalActionsVote'), 'a.approvalActionId = q.approvalActionId');
$select->join(array('v' => 'creqApprovalActionsVote'), 'a.approvalActionId = v.approvalActionId');
if (Unl_Util::isArray($id)) {
$select->where('a.approvalActionId IN(?)', $id);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment