Fix question getter

This commit is contained in:
Némunaire 2012-05-23 16:02:40 +02:00
commit 50d2a87575
2 changed files with 4 additions and 4 deletions

View file

@ -52,7 +52,7 @@ class QuestionsFile
*/
public function get_question($id)
{
return new Question($this->root_node->getElementById($id));
return new Question($this->treeXML->getElementById($id));
}
/**