Fixed a bug where logging in/out would cause a blank page display.

This commit is contained in:
JT Smith 2006-10-21 03:05:28 +00:00
parent e434fb700c
commit 5c77aace16
2 changed files with 3 additions and 2 deletions

View file

@ -587,7 +587,7 @@ sub login {
$self->session->errorHandler->warn($error) if $error;
}
return "";
return undef;
}
#-------------------------------------------------------------------
@ -613,7 +613,7 @@ sub logout {
$self->session->errorHandler->warn($error) if $error;
}
return "";
return undef;
}
#-------------------------------------------------------------------