diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-03-27 20:31:25 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-03-27 20:31:25 -0400 |
commit | a2efcc4eed047412ce5b0e9b4e95636b56014652 (patch) | |
tree | eb77d9539a77f55f0b8616c7ce2238fe86deb8ac /GradeBook_lib.tcl | |
parent | 48427bb515d5ea718aa6e98da44eb51a8bef6717 (diff) | |
download | GradeBook-a2efcc4eed047412ce5b0e9b4e95636b56014652.tar.gz GradeBook-a2efcc4eed047412ce5b0e9b4e95636b56014652.zip |
wrong sort column variable name was used in subroutine
Diffstat (limited to 'GradeBook_lib.tcl')
-rwxr-xr-x | GradeBook_lib.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index 6f914c8..4495274 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -1068,7 +1068,7 @@ proc htmlDBout {db permission_list user {sort_col {}}} { } } errStat ] if { $err } { - dbg "we should never be here if $sortCol exist in the table" msg_level_critical + dbg "we should never be here if $sort_col exist in the table" msg_level_critical dbg $errStat msg_level_critical htmlErrorMsg $errStat } |