diff --git a/application/models/tables/ApproverVotes.php b/application/models/tables/ApproverVotes.php
index 5a56e35580f7f8e57f55945dc8062db600f973cb..decd3bccab80425e04c102b5e6f6f0b303fa0251 100644
--- a/application/models/tables/ApproverVotes.php
+++ b/application/models/tables/ApproverVotes.php
@@ -61,6 +61,6 @@ class ApproverVotes extends Nmc_Db_Table
         $where[] = $db->quoteInto('request=?', $request->getPrimaryKey());
         $where[] = $db->quoteInto('approvalAction=?', $action->getPrimaryKey());
         $where = implode(' AND ', $where);
-        return $this->fetchRow($where);
+        return $this->fetchAll($where);
     }
 }
\ No newline at end of file