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

@ -2,6 +2,7 @@
- Added server side spellchecker (Martin Kamerbeek / Procolix)
- Added configurable sales tax. (Tiffany Patterson / Elite Marketing)
- change: made Text::Aspell optional, nullifying spellchecker if not present
- Fixed a bug where logging in/out would cause a blank page display.
7.1.2
- Fixed a bug that caused workflows to fail if collaboration systems and

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;
}
#-------------------------------------------------------------------