diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-03-07 01:20:02 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-03-07 01:20:02 +0000 |
commit | 1e7c9034ded97b32a7d79a1ba05b384028ec5081 (patch) | |
tree | 1cc9280dc37f96a460e58b03cdb1f67db07bf06a /register.php | |
parent | aeea83658b248e603a7ffdbebcd14e6665948ee5 (diff) |
bug fix: call to undefined session_create in register.php (added function
log_user called from identification and register)
bug fix: empty line at the beginning of functions.php disallowed cookies
(and hence logging in)
git-svn-id: http://piwigo.org/svn/trunk@1068 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | register.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/register.php b/register.php index 474b8a25b..d622d9bc4 100644 --- a/register.php +++ b/register.php @@ -36,7 +36,7 @@ if (isset($_POST['submit'])) { array_push($errors, $lang['reg_err_pass']); } - + $errors = array_merge( $errors, @@ -44,13 +44,12 @@ if (isset($_POST['submit'])) $_POST['password'], $_POST['mail_address']) ); - + if (count($errors) == 0) { $user_id = get_userid($_POST['login']); - $session_id = session_create($user_id, $conf['session_length']); - $url = 'category.php?id='.$session_id; - redirect($url); + log_user( $user_id, false); + redirect('category.php'); } } @@ -76,7 +75,7 @@ $template->assign_vars(array( 'L_EMAIL' => $lang['mail_address'], 'U_HOME' => PHPWG_ROOT_PATH.'category.php', - + 'F_ACTION' => 'register.php', 'F_LOGIN' => $login, 'F_EMAIL' => $email |