1 |
1773
|
Luisehahne
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category frontend
|
5 |
|
|
* @package account
|
6 |
|
|
* @author WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
|
|
* @link http://www.websitebaker2.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.x
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
|
|
* @version $Id$
|
13 |
|
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
|
|
*
|
16 |
|
|
*/
|
17 |
|
|
|
18 |
|
|
/* -------------------------------------------------------- */
|
19 |
|
|
// Must include code to stop this file being accessed directly
|
20 |
1777
|
Luisehahne
|
if(!defined('WB_PATH')) {
|
21 |
|
|
require_once(dirname(dirname(__FILE__)).'/framework/globalExceptionHandler.php');
|
22 |
|
|
throw new IllegalFileException();
|
23 |
1773
|
Luisehahne
|
}
|
24 |
|
|
/* -------------------------------------------------------- */
|
25 |
|
|
|
26 |
|
|
require_once(dirname(__FILE__).'/AccountSignup.php');
|
27 |
|
|
AccountSignup::deleteOutdatedConfirmations();
|
28 |
|
|
|
29 |
1868
|
Luisehahne
|
$sPassword = $database->escapeString($wb->StripCodeFromText($wb->get_post('new_password_1')));
|
30 |
|
|
$sLoginName = $database->escapeString($wb->StripCodeFromText($wb->get_post('new_loginname')));
|
31 |
|
|
$sConfirmationId = $database->escapeString($wb->StripCodeFromText($wb->get_post('confirm_code')));
|
32 |
1777
|
Luisehahne
|
|
33 |
2063
|
Luisehahne
|
$bSendRegistrationMailtoUser = false;
|
34 |
1773
|
Luisehahne
|
$bSendRegistrationMailtoAdmin = false;
|
35 |
|
|
$aUser = array();
|
36 |
|
|
if( ($sPassword=='') || ($sLoginName=='') ) {
|
37 |
|
|
msgQueue::add( $mLang->MESSAGE_LOGIN_BOTH_BLANK);
|
38 |
|
|
} else {
|
39 |
|
|
if( $iUserId = AccountSignup::checkPassWordConfirmCode( $sPassword, $sConfirmationId )) {
|
40 |
|
|
msgQueue::add( $mLang->MESSAGE_ACTIVATED_NEW_USER, true );
|
41 |
|
|
AccountSignup::saveNewConfirmation($sConfirmationId);
|
42 |
|
|
$email_to = AccountSignup::emailUser($iUserId);
|
43 |
|
|
$bSaveRegistration = $iUserId > 0;
|
44 |
|
|
$sSubmitAction = 'finished'; // default action
|
45 |
|
|
$sql = 'SELECT * FROM `'.TABLE_PREFIX.'users` ';
|
46 |
|
|
$sql .= 'WHERE `user_id` ='.$iUserId.' ';
|
47 |
|
|
if($oRes = $database->query($sql)) {
|
48 |
|
|
$aUser = $oRes->fetchRow(MYSQL_ASSOC);
|
49 |
|
|
$bSaveRegistration = true;
|
50 |
|
|
$sDisplayName = $aUser['display_name'];
|
51 |
|
|
$email_to = $aUser['email'];
|
52 |
|
|
$sLoginIp = $aUser['login_ip'];
|
53 |
|
|
$sLoginName = $aUser['username'];
|
54 |
|
|
}
|
55 |
|
|
|
56 |
|
|
} else {
|
57 |
|
|
msgQueue::add( $mLang->MESSAGE_FAILED_NEW_USER );
|
58 |
|
|
}
|
59 |
|
|
}
|