* Adding mail verification during account registration * Added new dist file option for mail verification * Added account confirmation page using tokens * Added mail class into user class for password resets * Moved password reset template * Adjusted account registration page * Adjusted user class for email confirmation Also fixed a bug with smarty_cache_key not being used properly if smarty is disabled. Key still needs to be available even if caching is disabled Addresses #330 and prepare the ticket for invitation only system.
18 lines
672 B
PHP
18 lines
672 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
// Confirm an account by token
|
|
if (!isset($_GET['token']) || empty($_GET['token'])) {
|
|
$_SESSION['POPUP'][] = array('CONTENT' => 'Missing token', 'TYPE' => 'errormsg');
|
|
} else if (!$aToken = $oToken->getToken($_GET['token'])) {
|
|
$_SESSION['POPUP'][] = array('CONTENT' => 'Unable to activate your account. Invalid token', 'TYPE' => 'errormsg');
|
|
} else {
|
|
$user->changeLocked($aToken['account_id']);
|
|
$oToken->deleteToken($aToken['token']);
|
|
$_SESSION['POPUP'][] = array('CONTENT' => 'Account activated. Please login.');
|
|
}
|
|
$smarty->assign('CONTENT', 'default.tpl');
|
|
?>
|