<?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__.'/../all_fns.php';

pool::execute('beforestart');

///////////////////////////////////
//Initializing variable $error
//////////////////////////////////

$error = 0;

///////////////////////////////////
//Insert comment
//////////////////////////////////

if(isset($_POST['comment_id']) && isset($_POST['comment_type']))
{
	insert_comment($_POST);
	
	//Send the notification email

	if($param_gen['notif'] == 1)
	{
		$nb_comment = count_comment_mail($_POST['comment_type']);
		
		if($nb_comment == 1)
		send_notif_comment();
	}
}
else $error = 1;

echo $error;
