<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

############################################################

require_once __DIR__.'/includes/all_fns.php';

///////////////////////////////////
//Validation of email
//////////////////////////////////

if(!empty($_GET['email']))
$email = $_GET['email']; 	

else redirect('acc_connexion.php');

///////////////////////////////////
//Validation of type
//////////////////////////////////

if(!empty($_GET['type']))
$type = (int) $_GET['type']; 	

else redirect('acc_connexion.php');

///////////////////////////////////
//Account confirmation
//////////////////////////////////

if(confirm_acc($email, $type))
$text = $language['account_conf_msg1'];

else $text = $language['account_conf_msg2'];

///////////////////////////////////
//Send the notification email
//////////////////////////////////

if($param_gen['notif'] == 1)
{
	$nb_acc = count_acc_mail();

	if($nb_acc == 1)
	send_notif_acc();
}

///////////////////////////////////
//Variables of elements
//////////////////////////////////

$index = 0;
$account = 0;

///////////////////////////////////
//Title and Meta
//////////////////////////////////

$title = $language['account_conf_title'];
$description = $language['account_conf_desc'];
$words = $language['account_conf_key'];
$info_page = $language['account_conf_info'];

///////////////////////////////////
//Display view
//////////////////////////////////

pool::execute('beforestart');

$view = array();
$view[] = 'template/tpl_txt.php';

require_once __DIR__.'/template/tpl_layout.php';