From 44753d64ea024d449eef1f61549d20755d9fca99 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 4 Jul 2011 15:47:36 -0400 Subject: [PATCH] use Poll_response::pkeyGet() in Poll::getResponse() --- plugins/Poll/Poll.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/plugins/Poll/Poll.php b/plugins/Poll/Poll.php index 0c274341b2..399d492406 100644 --- a/plugins/Poll/Poll.php +++ b/plugins/Poll/Poll.php @@ -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()