From 3d766fc35ac47c171ab10280a031d323b54f7d6c Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Thu, 2 Aug 2007 06:26:26 +0200 Subject: [PATCH] [svn r12850] Update $_SESSION['scorm_item_id'] to keep it fresh for the hotpotatoes scoring feature (this is a patch, not a beautiful design) --- main/newscorm/lp_comm.server.php | 1 + 1 file changed, 1 insertion(+) diff --git a/main/newscorm/lp_comm.server.php b/main/newscorm/lp_comm.server.php index 02926ec381..7f9bd73639 100644 --- a/main/newscorm/lp_comm.server.php +++ b/main/newscorm/lp_comm.server.php @@ -346,6 +346,7 @@ function switch_item_details($lp_id,$user_id,$view_id,$current_item,$next_item) $mylp->prerequisites_match(); //check the prerequisites are all complete if($debug>1){error_log('Prereq_match() returned '.htmlentities($mylp->error),0);} $objResponse->addScript("update_message_frame('".str_replace("'","\'",htmlentities($mylp->error))."');"); + $_SESSION['scorm_item_id'] = $new_item_id;//Save the new item ID for the exercise tool to use $_SESSION['lpobject'] = serialize($mylp); return $objResponse; }