From 267e5d9900b91f90bc5c35ca6ee3285e6a6b0eea Mon Sep 17 00:00:00 2001 From: Bertrand Date: Sat, 9 Jun 2012 23:09:51 +0200 Subject: [PATCH] Add question details in validation email => DONE --- Question.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Question.class.php b/Question.class.php index 5479110..102b2b2 100644 --- a/Question.class.php +++ b/Question.class.php @@ -125,17 +125,17 @@ class Question public function getCourse() { - return $course; + return $this->course; } public function getQuestion() { - return $question; + return $this->question; } public function getAnswer() { - return $answers; + return $this->answers; }