Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/WeBWorK/ContentGenerator/Logout.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ WeBWorK::ContentGenerator::Logout - invalidate key and display logout message.
=cut

use WeBWorK::Localize;
use WeBWorK::Authen qw(write_log_entry);

sub pre_header_initialize ($c) {
my $ce = $c->ce;
Expand All @@ -20,7 +19,7 @@ sub pre_header_initialize ($c) {
$authen->logout_user if $authen->can('logout_user');

$authen->killSession;
$authen->WeBWorK::Authen::write_log_entry('LOGGED OUT');
$authen->write_log_entry('LOGGED OUT');

# Check to see if there is a proctor key associated with this login. If there is a proctor user, then there must be
# a proctored test. So try and delete the key.
Expand Down
Loading