We can now modify the Question object return by getQuestion
This commit is contained in:
parent
f8b1fbbd82
commit
3b2ee617d7
3 changed files with 28 additions and 7 deletions
|
|
@ -91,7 +91,7 @@ class Question
|
|||
|
||||
$qnode->setAttribute("xml:id", $this->id);
|
||||
$qnode->setAttribute("addedtime", $this->added_time);
|
||||
$qnode->setAttribute("validated", $this->validated);
|
||||
$qnode->setAttribute("validated", intval($this->validated));
|
||||
$qnode->setAttribute("validator", $this->validator);
|
||||
$qnode->setAttribute("course", $this->course);
|
||||
$qnode->setAttribute("question", $this->question);
|
||||
|
|
|
|||
Reference in a new issue