added captcha and email validation to webgui auth

This commit is contained in:
JT Smith 2005-03-04 20:44:11 +00:00
parent 7db5db5833
commit 66e2028c3a
5 changed files with 99 additions and 5 deletions

View file

@ -578,8 +578,11 @@ Superclass method that performs standard logout routines.
=cut
sub logout {
my $self = shift;
WebGUI::Session::end($session{var}{sessionId});
WebGUI::Session::start(1);
my $u = WebGUI::User->new(1);
$self->{user} = $u;
return "";
}