Skip to content

Commit

Permalink
Merge pull request #2347 from drgrice1/bugfix/proctor-sign-in
Browse files Browse the repository at this point in the history
Fix a warning that occurs for proctor authentication.
  • Loading branch information
Alex-Jordan authored Mar 2, 2024
2 parents b150659 + 4926eec commit 59b1f9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/WeBWorK/Authen/Proctor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ sub set_params {
# rewrite the userID to include both the proctor's and the student's user ID
# and then call the default create_session method.
sub create_session {
my ($self, $userID, $newKey) = @_;
my ($self, $userID) = @_;

return $self->SUPER::create_session($self->proctor_key_id($userID), $newKey, $userID);
return $self->SUPER::create_session($self->proctor_key_id($userID), $userID);
}

# rewrite the userID to include both the proctor's and the student's user ID
Expand Down

0 comments on commit 59b1f9f

Please sign in to comment.