Fixed a bug where logging in/out would cause a blank page display.
This commit is contained in:
parent
e434fb700c
commit
5c77aace16
2 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue