source: branches/2.3/register.php @ 12766

Last change on this file since 12766 was 12611, checked in by mistic100, 12 years ago

merge r12610 from trunk bug:2503 in register.php bad template var for 'obligatory_user_mail_address'

  • Property svn:eol-style set to LF
File size: 4.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2011 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24//----------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
26include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
27
28// +-----------------------------------------------------------------------+
29// | Check Access and exit when user status is not ok                      |
30// +-----------------------------------------------------------------------+
31check_status(ACCESS_FREE);
32
33//----------------------------------------------------------- user registration
34
35if (!$conf['allow_user_registration'])
36{
37  page_forbidden('User registration closed');
38}
39
40$errors = array();
41if (isset($_POST['submit']))
42{
43  if (!verify_ephemeral_key(@$_POST['key']))
44  {
45                set_status_header(403);
46    array_push($errors, 'Invalid/expired form key');
47  }
48
49  if ($_POST['password'] != $_POST['password_conf'])
50  {
51    array_push($errors, l10n('please enter your password again'));
52  }
53
54  $errors =
55      register_user($_POST['login'],
56                    $_POST['password'],
57                    $_POST['mail_address'],
58                    true,
59                    $errors);
60
61  if (count($errors) == 0)
62  {
63    $user_id = get_userid($_POST['login']);
64    log_user($user_id, false);
65    redirect(make_index_url());
66  }
67        $registration_post_key = get_ephemeral_key(2);
68}
69else
70{
71        $registration_post_key = get_ephemeral_key(6);
72}
73
74$login = !empty($_POST['login'])?htmlspecialchars(stripslashes($_POST['login'])):'';
75$email = !empty($_POST['mail_address'])?htmlspecialchars(stripslashes($_POST['mail_address'])):'';
76
77//----------------------------------------------------- template initialization
78//
79// Start output of page
80//
81$title= l10n('Registration');
82$page['body_id'] = 'theRegisterPage';
83
84$template->set_filenames( array('register'=>'register.tpl') );
85$template->assign(array(
86  'U_HOME' => make_index_url(),
87        'F_KEY' => $registration_post_key,
88  'F_ACTION' => 'register.php',
89  'F_LOGIN' => $login,
90  'F_EMAIL' => $email,
91  'obligatory_user_mail_address' => $conf['obligatory_user_mail_address'],
92  ));
93
94//-------------------------------------------------------------- errors display
95if (count($errors) != 0)
96{
97  $template->assign('errors', $errors);
98}
99
100// include menubar
101$themeconf = $template->get_template_vars('themeconf');
102if (!isset($themeconf['hide_menu_on']) OR !in_array('theRegisterPage', $themeconf['hide_menu_on']))
103{
104  include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
105}
106
107include(PHPWG_ROOT_PATH.'include/page_header.php');
108$template->parse('register');
109include(PHPWG_ROOT_PATH.'include/page_tail.php');
110?>
Note: See TracBrowser for help on using the repository browser.