From 8a20f8b86a85d1de05a0c936c0a89950b741ec40 Mon Sep 17 00:00:00 2001 From: Bertrand Cournaud Date: Tue, 22 May 2012 09:39:52 +0200 Subject: [PATCH] Add id --- Question.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Question.class.php b/Question.class.php index 273e8ed..9904b45 100644 --- a/Question.class.php +++ b/Question.class.php @@ -54,7 +54,7 @@ class Question { echo 'Cours concerné : ' . $this->course . "
"; echo 'La question est : ' . $this->question . "
"; - echo 'Les réponses sont : ' . print_r($this->answers, true) .
; + echo 'Les réponses sont : ' . print_r($this->answers, true) . "
"; echo 'ID : ' . $this->id; }