* @param - integer $questionId - ID of the target question
@ -906,8 +901,9 @@ abstract class Question
$weighting=$this->weighting;
$position=$this->position;
$type=$this->type;
$level = intval($this->level);
$sql="INSERT INTO $TBL_QUESTIONS(question,description,ponderation,position,type) VALUES('".Database::escape_string($question)."','".Database::escape_string($description)."','".Database::escape_string($weighting)."','".Database::escape_string($position)."','".Database::escape_string($type)."')";
$sql="INSERT INTO $TBL_QUESTIONS(question,description,ponderation,position,type, level ) VALUES('".Database::escape_string($question)."','".Database::escape_string($description)."','".Database::escape_string($weighting)."','".Database::escape_string($position)."','".Database::escape_string($type)."' ,'".Database::escape_string($level)."')";