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

Updates to UCC Approved Requests report page

parent ac440467
No related branches found
Tags
No related merge requests found
......@@ -157,7 +157,10 @@ class Requests extends Nmc_Db_Table
$requestIds[] = $row['request'];
}
$where = $db->quoteInto('requestId IN (?)', $requestIds);
$where = array();
$where[] = $db->quoteInto('requestId IN (?)', $requestIds);
$where[] = 'state = "approve"';
$where = implode(' AND ', $where);
return $this->fetchAllSorted($where, self::COMPLETED_REQUESTS_ONLY);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment