Index: openacs-4/packages/dotlrn-ecommerce/www/admin/gwu-section-new.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-ecommerce/www/admin/gwu-section-new.tcl,v diff -u -r1.7 -r1.8 --- openacs-4/packages/dotlrn-ecommerce/www/admin/gwu-section-new.tcl 19 Jan 2018 12:59:10 -0000 1.7 +++ openacs-4/packages/dotlrn-ecommerce/www/admin/gwu-section-new.tcl 20 Jan 2018 22:44:04 -0000 1.8 @@ -40,7 +40,8 @@ # HAM : Let's check if we have InstructorCommunityId enabled and set if { $instructor_community_id == 0 && ![db_0or1row "checkinstructorcommunity" "select community_id from dotlrn_communities where community_id = :instructor_community_id"] } { - ad_return_complaint 1 "Parameter InstructorCommunityId is not set or Community Id does not exist." + ad_return_complaint 1 "Parameter InstructorCommunityId is not set or Community Id does not exist." + ad_script_abort } else { # community_id is valid # list users @@ -59,7 +60,8 @@ # HAM : Let's check if we have AssistantCommunityId enabled and set if { $assistant_community_id == 0 && ![db_0or1row "checkassistantcommunity" "select community_id from dotlrn_communities where community_id = :assistant_community_id"] } { - ad_return_complaint 1 "Parameter AssistantCommunityId is not set or Community Id does not exist." + ad_return_complaint 1 "Parameter AssistantCommunityId is not set or Community Id does not exist." + ad_script_abort } else { # community_id is valid set assistants [dotlrn_community::list_users $assistant_community_id]