diff options
-rwxr-xr-x | GradeBook_lib.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index 8a8aa7f..43859f1 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -2099,7 +2099,7 @@ proc UpdateColumnStDevGrade { columnname } { proc UpdateGradesTableStatistic { permission_list user } { - begin_db_transaction + #begin_db_transaction set grades_categories [get_grades_category] # remove unset and deleted categories from stats calculation @@ -2127,11 +2127,11 @@ proc UpdateGradesTableStatistic { permission_list user } { set update_parent_flag false UpdateColumnStatistic $columnname $update_parent_flag } - end_db_transaction + #end_db_transaction } proc UpdateColumnStatistic { columnname {update_parent_flag true} } { - begin_db_transaction + #begin_db_transaction set all_column_names [getColListFromTable GradesTable] if { $columnname ni $all_column_names } { end_db_transaction @@ -2155,7 +2155,7 @@ proc UpdateColumnStatistic { columnname {update_parent_flag true} } { set root_category_column "Grand Total" } UpdateColumnStatistic $root_category_column - end_db_transaction + #end_db_transaction } proc UpdateGrades { permission_list user } { |