use Poll_response::pkeyGet() in Poll::getResponse()

This commit is contained in:
Evan Prodromou 2011-07-04 15:47:36 -04:00
parent c468b0d7f3
commit 44753d64ea
1 changed files with 3 additions and 9 deletions

View File

@ -160,15 +160,9 @@ class Poll extends Managed_DataObject
*/
function getResponse(Profile $profile)
{
$pr = new Poll_response();
$pr->poll_id = $this->id;
$pr->profile_id = $profile->id;
$pr->find();
if ($pr->fetch()) {
return $pr;
} else {
return null;
}
$pr = Poll_response::pkeyGet(array('poll_id' => $this->id,
'profile_id' => $profile->id));
return $pr;
}
function countResponses()