You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
1008 B

<?php
/**
* @package tikiwiki
*/
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
require_once('tiki-setup.php');
$access->check_feature('validateUsers');
if (! empty($_REQUEST['user'])) {
$user_info = $userlib->get_user_info($_REQUEST['user']);
if ($user_info['waiting'] == 'u') {
$userlib->send_validation_email($user_info['login'], $user_info['valid'], $user_info['email'], '', 'y');
} else {
$userlib->send_validation_email($user_info['login'], $user_info['valid'], $user_info['email']);
}
$smarty->assign('msg', tra('An email has been sent to you with the instructions to follow.'));
} else {
$smarty->assign('msg', tra("The mail can't be sent. Contact the administrator"));
}
$smarty->assign('mid', 'tiki-information.tpl');
$smarty->display('tiki.tpl');