Index: openacs-4/packages/scorm-player/tcl/rte-api-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/scorm-player/tcl/rte-api-procs.xql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/scorm-player/tcl/rte-api-procs.xql 13 May 2010 01:17:53 -0000 1.1 +++ openacs-4/packages/scorm-player/tcl/rte-api-procs.xql 8 Jul 2010 01:14:22 -0000 1.2 @@ -60,7 +60,8 @@ update cmi_gobjective - set satisfied = :value + set satisfied = :value, + c_timestamp = current_timestamp where objective_id = :objective_id and user_id = :user_id and scope_id = :scope_id @@ -70,7 +71,8 @@ update cmi_gobjective - set measure = :value + set measure = :value, + c_timestamp = current_timestamp where objective_id = :objective_id and user_id = :user_id and scope_id = :scope_id @@ -82,7 +84,8 @@ update cmi_gobjective set measure = :measure, satisfied = :satisfied, - status = :completed + status = :completed, + c_timestamp = current_timestamp where objective_id = :objective_id and user_id = :user_id and scope_id = :scope_id @@ -92,18 +95,18 @@ insert into cmi_gobjective - (objective_id, user_id, satisfied, scope_id) + (objective_id, user_id, satisfied, scope_id, c_timestamp) values - (:objective_id, :user_id, :value, :scope_id) + (:objective_id, :user_id, :value, :scope_id, current_timestamp) insert into cmi_gobjective - (objective_id, user_id, measure, scope_id) + (objective_id, user_id, measure, scope_id, c_timestamp) values - (:objective_id, :user_id, :value, :scope_id) + (:objective_id, :user_id, :value, :scope_id, current_timestamp)