Index: openacs-4/packages/assessment/assessment.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/assessment.info,v diff -u -r1.36.2.7 -r1.36.2.8 --- openacs-4/packages/assessment/assessment.info 1 Aug 2005 18:07:55 -0000 1.36.2.7 +++ openacs-4/packages/assessment/assessment.info 3 Aug 2005 05:51:15 -0000 1.36.2.8 @@ -9,8 +9,8 @@ Eduardo Perez Ureta - Assessment package that will replace the survey, - quizz, complex survey, poll and other data collection packages + Assessment package that will replace the survey, + quizz, complex survey, poll and other data collection packages that OpenACS currently supports. 2005-08-01 E-LANE @@ -34,7 +34,8 @@ - + + Index: openacs-4/packages/assessment/tcl/as-checks-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/tcl/as-checks-procs.tcl,v diff -u -r1.24.2.7 -r1.24.2.8 --- openacs-4/packages/assessment/tcl/as-checks-procs.tcl 1 Aug 2005 18:07:55 -0000 1.24.2.7 +++ openacs-4/packages/assessment/tcl/as-checks-procs.tcl 3 Aug 2005 05:51:16 -0000 1.24.2.8 @@ -344,8 +344,9 @@ foreach notify_user $admin { lappend to $notify_user } - - notification::new -type_id [notification::type::get_type_id -short_name inter_item_check_notif] -object_id $inter_item_check_id -notif_subject "$action_name has been executed" -notif_text "The action $action_name has been executed. This message has been showed to the user: $user_message" -subset $to -force -action_id $inter_item_check_id + if { [parameter::get -package_id [ad_conn package_id] -parameter NotifyAdminOfActions -default 1] } { + notification::new -type_id [notification::type::get_type_id -short_name inter_item_check_notif] -object_id $inter_item_check_id -notif_subject "$action_name has been executed" -notif_text "The action $action_name has been executed. This message has been showed to the user: $user_message" -subset $to -force -action_id $inter_item_check_id + } }