Avoiding some notices

This commit is contained in:
Michael 2019-01-13 18:03:13 +00:00
parent 0760b41fac
commit c1dec50248
3 changed files with 6 additions and 3 deletions

View file

@ -48,10 +48,10 @@ class Login extends BaseModule
public static function post()
{
$return_path = $_SESSION['return_path'];
$return_path = defaults($_SESSION, 'return_path', '');
session_unset();
$_SESSION['return_path'] = $return_path;
// OpenId Login
if (
empty($_POST['password'])