diff --git a/src/applications/ponder/controller/PonderQuestionViewController.php b/src/applications/ponder/controller/PonderQuestionViewController.php index 21f6d405ab..28d51492a3 100644 --- a/src/applications/ponder/controller/PonderQuestionViewController.php +++ b/src/applications/ponder/controller/PonderQuestionViewController.php @@ -69,7 +69,9 @@ final class PonderQuestionViewController extends PonderController { array( 'device' => true, 'title' => 'Q'.$question->getID().' '.$question->getTitle(), - 'pageObjects' => array($question->getPHID()), + 'pageObjects' => array_merge( + array($question->getPHID()), + mpull($question->getAnswers(), 'getPHID')), )); }