From a0e8331441febaaf08bdf73ebf451b0065e1918f Mon Sep 17 00:00:00 2001 From: Arthur Portugal Date: Wed, 10 Feb 2010 10:16:42 -0500 Subject: [PATCH] MInor - Needed the a require_once of the file exercise because not find the class answer CT#191 --- main/exercice/export/qti2/qti2_classes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/main/exercice/export/qti2/qti2_classes.php b/main/exercice/export/qti2/qti2_classes.php index 1b374e9429..e7e8f27216 100755 --- a/main/exercice/export/qti2/qti2_classes.php +++ b/main/exercice/export/qti2/qti2_classes.php @@ -22,6 +22,7 @@ define('FREE_ANSWER', 5); define('HOTSPOT', 6); require_once(api_get_path(SYS_CODE_PATH).'/exercice/answer.class.php'); +require_once(api_get_path(SYS_CODE_PATH).'/exercice/exercise.class.php'); require_once(api_get_path(SYS_CODE_PATH).'/exercice/hotspot.class.php'); require_once(api_get_path(SYS_CODE_PATH).'/exercice/unique_answer.class.php'); require_once(api_get_path(SYS_CODE_PATH).'/exercice/multiple_answer.class.php');