aboutsummaryrefslogtreecommitdiff
path: root/GradeBook_lib.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'GradeBook_lib.tcl')
-rwxr-xr-xGradeBook_lib.tcl7
1 files changed, 6 insertions, 1 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl
index 51e682b..c7ba1be 100755
--- a/GradeBook_lib.tcl
+++ b/GradeBook_lib.tcl
@@ -1107,7 +1107,12 @@ proc isActionGranted { action permission_list user } {
array set permission $permission_list
if { $action == "defaultview" } {
# this one permitted to everyone
- dbg "requested action $action for user $user is granted" 4
+ dbg "requested action $action for user $user is granted" msg_level_info
+ return 1;
+ }
+ if { $action == "resetforgottenpassword" } {
+ # this one permitted to everyone
+ dbg "requested action $action for user $user is granted" msg_level_info
return 1;
}
if { ![info exist permission($action) ] } {